#1
YouR
,
#2
I'M'CrowN
,
#3
I'M'CrowN
,
#4
,
#5
I'M'CrowN
,
#6
I'M'CrowN
,
#7
,
#8
,
#9
,
#10
,
#11
I'M'CrowN
,
#12
,
#13
Atharkiki
,
#14
I'M'CrowN
,
#15
Tavora-kun
,
#16
I'M'CrowN
,
#17
線上看
,
#18
I'M'CrowN
,
#19
Yuucito
,
#20
,
#21
,
#22
,
#23
I'M'CrowN
,
#24
I'M'CrowN
,
#25
Yuucito
,
#26
I'M'CrowN
,
#27
❤️
Wernayasa
,
#28
,
#29
Super Miu
,
#30
Super Miu
,
#31
Super Miu
,
#32
I'M'CrowN
,
#33
I'M'CrowN
,
#34
olalavui
,
#35
Han Haoyu
,
#36
Han Haoyu
,
#37
Atharkiki
,
#38
Super Miu
,
#39
Han Haoyu
,
#40
I'M'CrowN
,
#41
Han Haoyu
,
#42
Han Haoyu
,
#43
I'M'CrowN
,
#44
Felix Designs
,
#45
Felix Designs
,
#46
,
#47
Felix Designs
,
👋
How do I make the image not so long? It's the Last Action part in the mobile version [Screenshot]
👋
Hapus
Balas
Its will fix itself if there is more content on it.
Infoo source code shiroyuki kapan selesai?
👋
Cek email.
Min ini baru beli hexa masi ada bug.. pas ngecilin browser tampilan pada web tidak rapih. Beda sama yang yugen, tadi salah beli tapi ini juga bagus, cuma karena bug ini jadi nanggung bet
👋
Ok, minta screenshot bugnya.
Buat akun github untuk mendaptkan update seumur hidup.
Kalau salah beli hubungi aku di: wernayasa@gmail.com sekaligus kirim screenshot dan link profil githubmu.
Buat akun github untuk mendaptkan update seumur hidup.
Kalau salah beli hubungi aku di: wernayasa@gmail.com sekaligus kirim screenshot dan link profil githubmu.
Hey min what will be added in new update v3
👋
Not much, redesign mobile app and changing color scheme to hianime.
hello min , can you please tell me how to create this type of system like when label "Streaming" is added to a post it should only show a post code which i want to show and nothing else than that ?
👋
Not every theme can do this, you must start with my [base theme].
Its has Chapter label pre build on it.
You can modified label Chapter to Streaming.
👋
Its has Chapter label pre build on it.
You can modified label Chapter to Streaming.
Okay min but i have to do it on my theme . Can you please guide me with that ?
👋
This is the key code: <!-- Post Series and Chapter -->
<b:include cond='data:view.isPost and data:post.labels none ( l => l.name in ["Chapter"] )' data='post' name='post'/>
<b:include cond='data:view.isPost and data:post.labels any (l => l.name == "Chapter")' data='post' name='postChapter'/> Paste inside id='postCommentsAndAd' or find anything similar.
<b:include cond='data:view.isPost and data:post.labels none ( l => l.name in ["Chapter"] )' data='post' name='post'/>
<b:include cond='data:view.isPost and data:post.labels any (l => l.name == "Chapter")' data='post' name='postChapter'/> Paste inside id='postCommentsAndAd' or find anything similar.
min i have hianime api how we can use it in our theme
👋
I don't understand how API works.
Where I can read the documentation?
👋
Where I can read the documentation?
heare it is
[Link]
👋
[Link]
min did you notice all are telling that its a blogger site and will suspend soon pls make theme for wordpress
[Screenshot]
👋
[Screenshot]
not only blogger. Even in wordpress anime site will be taken down because of copyright.
Many don't know the risk, because it completely random.
If you blog has suspended in the past, more likely you wont gets anymore.
WordPress is too complicated.
I enjoy the process making blogger theme as a fun and relaxing activity.
If you blog has suspended in the past, more likely you wont gets anymore.
WordPress is too complicated.
I enjoy the process making blogger theme as a fun and relaxing activity.
This documentation beyond my ability.
Sorry i can't help you.
Sorry i can't help you.
the risk is always there. Not only on Blogger, all anime and movie streaming websites including WordPress will also be at risk of being suspended. because all of them are copyrighted. if you already know that. Start backing up all data on the web. always.
hello min , can you please share the post code for moopa theme ? if it is not responsive then also it will work for me . 😭😭
👋
What do you mean?
moopa is still in development.
moopa is still in development.
https://hurawatch2.to/tv buat thema gini min
👋
Sudah gk sempat, banyak proyek yg belum selesai.
Aku bookmark dulu.
Aku bookmark dulu.
multi tab script not working on my theme min 😭
👋
Which one? Send me screenshot.
👋
This script : https://ibb.co/R3DCGfj
Also the new series.xml widget was not working 😭
👋
Also the new series.xml widget was not working 😭
Add this script above </head>: <script src='https://cdn.jsdelivr.net/gh/siwaluh/BloggerScript@main/main/BloggerScript.min.js'></script>
👋
the multitab section is not showing min after adding this script
also the new series widget not showing posts , i added the labels (Series,Action,Ep 8,9.8,Completed,Shounen,) to 12 posts
👋
If you want, BloggerScript version.
document.addEventListener('DOMContentLoaded', function () {
const tabs = document.querySelectorAll('button[id^="tab-"]');
const postsContainer = document.getElementById('posts-container');
let currentLabel = 'Series'; // Default label
// Function to fetch posts with a specific label
function fetchPostsByLabel(label) {
// Clear the posts container
postsContainer.innerHTML = '';
// Determine the number of posts to fetch based on screen size
const isDesktop = window.matchMedia("(min-width: 1024px)").matches;
const maxResults = isDesktop ? 12 : 8;
const bS = new BloggerScript({
'sizeImage': 's360',
'label': label,
'max-results': maxResults,
'noImage': 'https://via.placeholder.com/150'
});
bS.run(posts => {
if (posts.length > 0) {
posts.forEach(post => {
const title = post.title || 'No Title';
const postCard = `
<div class="bg-[#201f31] text-white rounded-lg overflow-hidden transform transition hover:scale-105 hover:shadow-lg m-[4px]">
<div class="thumbnail-container aspect-w-7 aspect-h-10">
<img src="${post.image}" alt="${title}" class="w-full h-full object-cover" style="border-radius: 10px;">
<div class="center-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24"><path fill="white" fill-rule="evenodd" d="M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643z" clip-rule="evenodd"/></svg>
</div>
</div>
<div class="p-[8px] text-center" style="padding-top: 5px;">
<h2 class="text-base font-bold text-white-400 truncate">
<span class="dots bg-green-500 inline-block w-2 h-2 rounded-full mr-2"></span>${title}
</h2>
</div>
</div>
`;
postsContainer.insertAdjacentHTML('beforeend', postCard);
});
} else {
postsContainer.innerHTML = '<p>No posts found for this label.</p>';
}
});
}
// Add event listeners to tabs
tabs.forEach(tab => {
tab.addEventListener('click', function () {
// Remove active class from all tabs
tabs.forEach(t => t.classList.remove('bg-gray-100', 'dark:bg-gray-700', 'text-red-500'));
// Add active class to the clicked tab
this.classList.add('bg-gray-100', 'dark:bg-gray-700', 'text-red-500');
// Update the current label
currentLabel = this.id.replace('tab-', '');
fetchPostsByLabel(currentLabel.charAt(0).toUpperCase() + currentLabel.slice(1));
});
});
// Fetch 'Series' posts by default on page load
fetchPostsByLabel('Series');
});
👋
document.addEventListener('DOMContentLoaded', function () {
const tabs = document.querySelectorAll('button[id^="tab-"]');
const postsContainer = document.getElementById('posts-container');
let currentLabel = 'Series'; // Default label
// Function to fetch posts with a specific label
function fetchPostsByLabel(label) {
// Clear the posts container
postsContainer.innerHTML = '';
// Determine the number of posts to fetch based on screen size
const isDesktop = window.matchMedia("(min-width: 1024px)").matches;
const maxResults = isDesktop ? 12 : 8;
const bS = new BloggerScript({
'sizeImage': 's360',
'label': label,
'max-results': maxResults,
'noImage': 'https://via.placeholder.com/150'
});
bS.run(posts => {
if (posts.length > 0) {
posts.forEach(post => {
const title = post.title || 'No Title';
const postCard = `
<div class="bg-[#201f31] text-white rounded-lg overflow-hidden transform transition hover:scale-105 hover:shadow-lg m-[4px]">
<div class="thumbnail-container aspect-w-7 aspect-h-10">
<img src="${post.image}" alt="${title}" class="w-full h-full object-cover" style="border-radius: 10px;">
<div class="center-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24"><path fill="white" fill-rule="evenodd" d="M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643z" clip-rule="evenodd"/></svg>
</div>
</div>
<div class="p-[8px] text-center" style="padding-top: 5px;">
<h2 class="text-base font-bold text-white-400 truncate">
<span class="dots bg-green-500 inline-block w-2 h-2 rounded-full mr-2"></span>${title}
</h2>
</div>
</div>
`;
postsContainer.insertAdjacentHTML('beforeend', postCard);
});
} else {
postsContainer.innerHTML = '<p>No posts found for this label.</p>';
}
});
}
// Add event listeners to tabs
tabs.forEach(tab => {
tab.addEventListener('click', function () {
// Remove active class from all tabs
tabs.forEach(t => t.classList.remove('bg-gray-100', 'dark:bg-gray-700', 'text-red-500'));
// Add active class to the clicked tab
this.classList.add('bg-gray-100', 'dark:bg-gray-700', 'text-red-500');
// Update the current label
currentLabel = this.id.replace('tab-', '');
fetchPostsByLabel(currentLabel.charAt(0).toUpperCase() + currentLabel.slice(1));
});
});
// Fetch 'Series' posts by default on page load
fetchPostsByLabel('Series');
});
Thanks min for the blogger script version ❤️
Screenshot?
Update your post Series date to automatic.
👋
Update your post Series date to automatic.
Configurasi agar menjadi multitab?
Aku memakai html ini: <div id='posts-container' class='grid grid-cols-4'/></div> yg muncul hanya post series, tidak ada tab.
[demo]
👋
Aku memakai html ini: <div id='posts-container' class='grid grid-cols-4'/></div> yg muncul hanya post series, tidak ada tab.
[demo]
Thanks for sharing this.
👋
untuk tab nya seperti ini
<div class='tabs'>
<button class='active' id='tab-series'>Series</button>
<button id='tab-movies'>Movies</button>
<button id='tab-dramas'>Dramas</button>
</div>
👋
<div class='tabs'>
<button class='active' id='tab-series'>Series</button>
<button id='tab-movies'>Movies</button>
<button id='tab-dramas'>Dramas</button>
</div>
Berhasil.
Dari mana km tau caranya?
👋
Dari mana km tau caranya?
const tabs = document.querySelectorAll('button[id^="tab-"]');
- memilih semua elemen button yang ada attr id yang berisi "tab-"
currentLabel = this.id.replace('tab-', '');:
- kalau di klik labelnya akan berubah sesuai id nya. contoh, tab yang diklik berisi id=tab-movie, maka currentLabel akan menjadi 'Movie'.
👋
- memilih semua elemen button yang ada attr id yang berisi "tab-"
currentLabel = this.id.replace('tab-', '');:
- kalau di klik labelnya akan berubah sesuai id nya. contoh, tab yang diklik berisi id=tab-movie, maka currentLabel akan menjadi 'Movie'.
very correct !
you are welcome min
screenshot min : https://ibb.co/nfQjYF2
it is still not working min 😭
👋
it is still not working min 😭
Ok.
Km ngerjakan tema apa sekarang?
👋
Km ngerjakan tema apa sekarang?
You need minimum 6 posts with label Series.
👋
Forum Bot said:
This comment has been removed by the author.
Tema manga
[Link]
👋
[Link]
Added but then also it is not working min .
Website : https://abeflixstreamtv.blogspot.com/?m=1
👋
Website : https://abeflixstreamtv.blogspot.com/?m=1
Go to Layout and change NSFW label to other label.
for example Action or Featured or New.
[Screenshot]
for example Action or Featured or New.
[Screenshot]
Cakep.
Because you are using 2 same script, slider and new series.
👋
min 5 days left when you will release update v 3
👋
ohh thanks min
hello min , i am creating a theme from scratch using your base theme and i am getting an issue that how to make the title appear below the image ?
screenshot : https://ibb.co/qF6CgXZ
👋
screenshot : https://ibb.co/qF6CgXZ
31 august 2024
It's not that hard.
Move title code at bottom.
👋
Move title code at bottom.
thanks min , also i want the post card should change the background-color and text color according to theme color . how to do that min ?
screenshot: https://ibb.co/gdmxG4s
👋
screenshot: https://ibb.co/gdmxG4s
the post body is looking like this bro : https://ibb.co/D94vD2y please help
👋
Wernayasa admin is busy working on updating the Hexanime v3 theme, maybe he will help with your problem when his work is finished!
👋
What do you mean theme color? do you mean color scheme?
You can add color cheme/accent by declaring variable: $(keycolor) you can use this variable as background or link or anything you want.
[tutorial]
Screenshot your html or share the code
You can add color cheme/accent by declaring variable: $(keycolor) you can use this variable as background or link or anything you want.
[tutorial]
Screenshot your html or share the code
I think I will finish updating Hexanime on time.
Remove: div.comment-replies {
margin-top: 1rem !important;
margin-left: -20px !important;
} Replace with: div.comment-replies {
margin-top: 1rem !important;
padding-left: 50px;
}
div.comment-replies li {
position: relative;
}
👋
margin-top: 1rem !important;
margin-left: -20px !important;
} Replace with: div.comment-replies {
margin-top: 1rem !important;
padding-left: 50px;
}
div.comment-replies li {
position: relative;
}
thanks min , i also need one more help min , how to solve this issue in posts in base theme ? i am developing an anime streaming theme min
screenshot : https://imgur.com/a/osiT9FG
👋
screenshot : https://imgur.com/a/osiT9FG
Use CSS injection with condition: <b:class cond='data:view.isHomepage' name='grid grid-cols-[repeat(auto-fill,minmax(130px,1fr))] lg:grid-cols-[repeat(auto-fill,minmax(206px,1fr))] auto-cols-[minmax(204px,1fr)] gap-4'/> Paste the code bellow wrapper, this code its will inject CSS on parent element.
Using various cond: to set a rule on different pages.
This is advance technique technique that I often use.
[Blogger CSS Injection]
👋
Using various cond: to set a rule on different pages.
This is advance technique technique that I often use.
[Blogger CSS Injection]
Sorry, previous tutorial contain sensitive information, I have to delete it.
New Tutorial: [CSS Injection]
👋
New Tutorial: [CSS Injection]
v3 sudah on ready kah min??
thanks min , i also tried b:tag condition to display grid for search results but it did not worked 😭 can you please help me with that ? 😭
👋
i added the wrong b cond min but now the problem solved 🥰
min lots of Errors is in new update when wll stable version release
👋
Try clean install.
Send error screenshots.
Stable version will come if you help me identified the bug.
Send error screenshots.
Stable version will come if you help me identified the bug.
Hello, I made the purchase a short time ago but I'm facing some problems, on the home page the carousel posts are not appearing, can you tell me how to solve it? Trending is not showing either
torrentsatsu.blogspot.com
👋
torrentsatsu.blogspot.com
Put label Series
Carousel need minimum 6 posts with label Series
Trending need minimum 12 posts with label Series
Get latest version on GitHub.
👋
Carousel need minimum 6 posts with label Series
Trending need minimum 12 posts with label Series
Get latest version on GitHub.
hello min , can you please help me with the responsiveness of the sidebar for desktop view ?
screenshot : https://imgur.com/a/UEXJNJT
👋
screenshot : https://imgur.com/a/UEXJNJT
website: https://anixnime-bt.blogspot.com/
👋
min im giving some bug reports i recently faced
- Homepage Not available for mobile view
- Top 10 not available for mobile View
- Scedule and other Settings which are on bottom not working
this are some bugs
👋
- Homepage Not available for mobile view
- Top 10 not available for mobile View
- Scedule and other Settings which are on bottom not working
this are some bugs
To create responsive you need to add md:
Create new wrap: <div class="grid md:grid-cols-[1fr_330px]"> Final result looks like this: <div class="grid md:grid-cols-[1fr_330px]">
<div id="sidebar-home" class="bg-white dark:bg-neutral-800 shadow mb-5 section">
...
</div>
<main class="my-5 xl:my-10">
...
</main>
</div>
Create new wrap: <div class="grid md:grid-cols-[1fr_330px]"> Final result looks like this: <div class="grid md:grid-cols-[1fr_330px]">
<div id="sidebar-home" class="bg-white dark:bg-neutral-800 shadow mb-5 section">
...
</div>
<main class="my-5 xl:my-10">
...
</main>
</div>
Get new update from my repo.
Fresh no modification.
I think there is problem with update sync github.
Send screenshot, its help me identified the problem.
Fresh no modification.
I think there is problem with update sync github.
Send screenshot, its help me identified the problem.
Why is the Trending grid not displayed?
👋
They need 11 or more posts with label Series
Sometime, if you import post from other blog, its will not working.
Send me a screenshot.
Sometime, if you import post from other blog, its will not working.
Send me a screenshot.
I remove it for app view.
Apart from the errors that I'M CrowN reports, I also have these: I don't know why it keeps the posts from the other blog [Screenshot]
👋
hello min can you please help me with the label fetching for episode duration ? i am using this code for fetching but it is making my blog posts hidden . Also i am using base theme for the work
here is the code i was using
👋
Code : https://github.com/anixrealm/-Widgets/blob/main/error%20in%20fetching%20ep%20duration
👋
Check new update on github.
👋
This code won't work.
XML does not support regex expression.
👋
XML does not support regex expression.
I'm still having some issues with the mobile version. The latest update is cut off, it doesn't position correctly, and the servers don't appear if they are subtitled or dubbed. Also, I have posts from another blogger that aren't mine, I don't know what's going on there. [Screenshot] [Screenshot]
👋
got it min . also can you please help me i am trying to make the popular post widget to show popular posts with label "Anime" but i am not getting what to do i tried data:postlabel cond but it did not work .
my snippetpost code : https://github.com/anixrealm/-Widgets/blob/main/error%20in%20popular%20posts
👋
my snippetpost code : https://github.com/anixrealm/-Widgets/blob/main/error%20in%20popular%20posts
Check newer update.
How to fix latest update:
- go to post list > click label Series
- scroll down until all post visible
- mark all post > remove label Series
- mark 3 post > add label Series
- mark all post > add label Series There are some issue with blogger import post.
👋
How to fix latest update:
- go to post list > click label Series
- scroll down until all post visible
- mark all post > remove label Series
- mark 3 post > add label Series
- mark all post > add label Series There are some issue with blogger import post.
Add this b:with above b:loop to filter specific label: <b:with value='data:posts filter (p => p.labels none (l => l.name == "Anime"))' var='posts'>
...
</b:with> Check your new code.
👋
...
</b:with> Check your new code.
why does my blog ( Note: this blog has been locked )
every time i make new blog and upload my backed up content it became like that
👋
every time i make new blog and upload my backed up content it became like that
The content itself is the issue, Google scans your content and flags it.
If you upload your content to another blog, you blog might be banned too, though it doesn't happen every time.
Here's what you can do: create a new blog and post some random articles. Wait until it gets locked. Then, appeal to get your blog back. If your blog is restored, you can use it without worrying about it being locked again. This is just my experience, and there's no proof it will work.
The title of this post seems cursed,
you can't create a post with this title: The Wrong Way to Use Healing Magic
👋
If you upload your content to another blog, you blog might be banned too, though it doesn't happen every time.
Here's what you can do: create a new blog and post some random articles. Wait until it gets locked. Then, appeal to get your blog back. If your blog is restored, you can use it without worrying about it being locked again. This is just my experience, and there's no proof it will work.
The title of this post seems cursed,
you can't create a post with this title: The Wrong Way to Use Healing Magic
I keep getting these errors. I try to make a line break, but it gets distorted and the word Continue Watching doesn't appear on the mobile version. [Screenshot]
👋
add this..
.film_list {
display: block;
padding-bottom: 1.5rem;
}
.film_list {
display: block;
padding-bottom: 1.5rem;
}
xml code need self closing tag: <br/> If there is one history element, it will fix the problem. [Screenshot]
I will fix the spacing on next update.
I will fix the spacing on next update.
hello min please check that repo , error was not solved also i am using base theme when i put tag anime it showed the posts without filtering the posts with anime label , showing only 4 posts , i have updated the code with 2 popularpost sections . please help
Ok, check new patch v3.3.1.
👋
actually min i am working on a popular post section in which popularpost1 should show the top 10 of posts with label "Anime" whereas the popularpost2 will show the top 10 of posts with label "Episode" . but i do not know why it is not working on the base theme i tried the recent code from you also but it did not worked 😭😭
update apa ni min..?
👋
watch list mode mobile berantakan min...
Watch list di mobile yg tidak kelihatan.
Mengecilkan padding di homepage, agar gambar terlihat lebih lebar.
Update 3.3.2: - Memperbaiki tab watch list di mobile
- Padding top di halaman untuk tampilan mobile
👋
Mengecilkan padding di homepage, agar gambar terlihat lebih lebar.
Update 3.3.2: - Memperbaiki tab watch list di mobile
- Padding top di halaman untuk tampilan mobile
thanks min..
thanks min it worked , the problem is solved i was just adding the wrong label to it .
also i want to tell min that i am working on a theme which has both Anime + Manga .
my design is inspired from moopa but i will redesign it into an original design with the coming updates of my theme .
can you please give me permission to learn about chapter connection to the manga post like in zeistmanga v5 ? like if there is a manga and if i add a label Chapter 1 Hunter X Hunter so i will automatically add the chapter to the chapter list
also i want to tell min that i am working on a theme which has both Anime + Manga .
my design is inspired from moopa but i will redesign it into an original design with the coming updates of my theme .
can you please give me permission to learn about chapter connection to the manga post like in zeistmanga v5 ? like if there is a manga and if i add a label Chapter 1 Hunter X Hunter so i will automatically add the chapter to the chapter list
i tried with different content and and a new blog but still the blog has been locked
👋
and i dont even upload content still it gets locked
also i tried using different blogger accounts
👋
also i tried using different blogger accounts
thanks min , i took the inspiration from it . the theme is almost completed , just the manga post is left , i think the theme will be completed by 10th September
👋
From experience there is something called a black list, it is like a blacklist for uploading something strong or strange names. I recommend you use a new account and a VPN to create a blog again. After creating it, give it a try now and publish your things. The time is to see if it bans you again.
I see, maybe you're on a blacklist.
Can you recover it?
It's fairly easy to do if there's no content on it.
Can you recover it?
It's fairly easy to do if there's no content on it.
Keep going, we need more blogger developer.
I can't handle all request that coming.
👋
I can't handle all request that coming.
yupp ! my moopa clone is almost complete
Credits :
EmissionHex min for popularPosts section help and Base Theme and Chapter Fetch Logic From ZeistManga V5
Mobile Nav Bar Inspired From Hexanime V1 and used Demo Posts For Testing
things left :
Slider ( need help 😭)
Manga Chapter ( will be added in 1-2 days . code is completed )
Schedule ( Taking Permission to use Base Code From Rasgane bro )
Bookmark ( Igniel Bookmark or maybe taking permission from dayat sis )
👋
Credits :
EmissionHex min for popularPosts section help and Base Theme and Chapter Fetch Logic From ZeistManga V5
Mobile Nav Bar Inspired From Hexanime V1 and used Demo Posts For Testing
things left :
Slider ( need help 😭)
Manga Chapter ( will be added in 1-2 days . code is completed )
Schedule ( Taking Permission to use Base Code From Rasgane bro )
Bookmark ( Igniel Bookmark or maybe taking permission from dayat sis )
hey min no homepage is showing on mobile view and also top 10 post also
👋
Flowbite has [carousel],
it simple but not good as swiper js.
👋
it simple but not good as swiper js.
I remove it for better user experience.
thanks min and i tried a carousel using swiper js but it was conflicting with my some swipers so i switched to owl carousel and for the base i tried sliderv2 but it also did not worked 😭 please help
👋
ask chatgpt to create multiple swiper with different config
👋
okay min
Min what about Download Which is showing in side of play bitton
👋
hello min can you please tell me your email , i want to show you my moopa clone .
👋
wernayasa@gmail.com
👋
Does anyone know why I get this error when changing episodes? I only get it on mobile devices. [Screenshot]
👋
added min
👋
Clear your browser cache.
If its not working, send me link to your error post.
👋
If its not working, send me link to your error post.
Done.
It usually happens in all the posts when you put an episode and watch at least 5 seconds and you change it for the next button or the table button, it only happens on mobile devices. And also the anime rating when I put it does not appear as if I had removed the series tag for example: 5.3 etc. I hope that is the problem. my main site this:https://www.douanime.net
👋
Go to Theme > click arrow > Mobile Setting > Desktop
[Screenshot]
I can't find the bug. Can you record how to replicate it?
👋
[Screenshot]
I can't find the bug. Can you record how to replicate it?
I already have it like this. What part of the code has to do with the rating of the anime because when I put it, the anime is removed as if the series tag were not there. I think that is where the error is.
👋
Try score with triple digit number: 5.30
Put label: Steam
Not: Series
Don't put theme together.
👋
Put label: Steam
Not: Series
Don't put theme together.
I think some part of the code that has to do with punctuation broke.
Forum Bot said:
This comment has been removed by the author.Forum Bot said:
This comment has been removed by the author.
Each post has streamingId: streamingId = 'THE NEW GATE',
maxEpisode = '12',
postId = '1640610918239887748'; After this, clear your browser cache.
Not your browser history, browser cache is different.
I watching more than 7 second, it still not crashing: [Youtube]
maxEpisode = '12',
postId = '1640610918239887748'; After this, clear your browser cache.
Not your browser history, browser cache is different.
I watching more than 7 second, it still not crashing: [Youtube]
Min there is an issue in recomend section your post is showing
[Screenshot]
👋
[Screenshot]
edit html>>>search-and-delete (hexanime-bt.blogspot.com) or replace it with your web address.. 😪
👋
Find and delete 2 this code: data-host='hexanime-bt.blogspot.com'
You can delete data-host='hexanime-bt.blogspot.com' acording to dev who working on this script.
I think data-host is great feature for developing theme your blog on local machine.
I think data-host is great feature for developing theme your blog on local machine.
I want to develop a true related post feature.
My current related posts is showing duplicate posts and only displaying recent ones.
I have some ideas, but I don't have time to experiment with them.
My current related posts is showing duplicate posts and only displaying recent ones.
I have some ideas, but I don't have time to experiment with them.
hello min , can you please help me with the manga chapter reading code . like in my moopa clone i tried adding a chapter list but the manga reading page is some tricky thing 😭. can you please help me with that ?
thanking you ,
anix realm
👋
thanking you ,
anix realm
Ok, I will look at the code tomorrow.
I can't edit your theme.
Set me as admin.
👋
Set me as admin.
Forum Bot said:
This comment has been removed by the author.
After I translated the Label and Genre into Vietnamese, I cannot use the search function. How can I fix this?
👋
[Screenshot]
How to edit to look like photo?
👋
How to edit to look like photo?
You can't.
👋
Search function is for post that has label: Series
👋
can you fix it
👋
Sorry for the late reply bro but due to my poor health i will be inactive for a few more days . After when i will be in good health then i will be continuing the moopa bt project .
Thanking you ,
Anix Realm
Thanking you ,
Anix Realm
No, its too complex especially total number.
Forum Bot said:
This comment has been removed by the author.
hey min movie lable is not showing in mobile view home i want to add
👋
Maybe not enough post.
I don't know which label you referring to.
Send screenshot.
I don't know which label you referring to.
Send screenshot.
i want to remove tho ova and replace it with movie how i can do so
[Screenshot]
👋
[Screenshot]
<ul class='ulclear' data-custom-jumlah='5' data-custom-label='ONA' data-custom-name='featured_four' data-custom-summary='true'/>
where download links?
👋
No download link, you can only buy it.
halo min, untuk di hexanime ini apakah ada label wajib atau label opsional seperti negara, episode, hot, dan sebagainya?
👋
Forum Bot said:
This comment has been removed by the author.
Label Wajib: Series
Stream Label Optional: HD
Ep 03
SUB
DUB
dll Tidak ada label Hot dan Episode
👋
Stream Label Optional: HD
Ep 03
SUB
DUB
dll Tidak ada label Hot dan Episode
thank you bro , i am feeling better from before but it think i can release the theme by 31st Oct , 2024 only because my college has started .
Also i have given you Admin Access for Moopa Bt , can you please help with the theme a bit for the manga reading portion?
thanking you ,
Anix Realm
👋
Also i have given you Admin Access for Moopa Bt , can you please help with the theme a bit for the manga reading portion?
thanking you ,
Anix Realm
Sure.
oke makasih min, kemarin udah nemu kok pas check di template, ternyata udah ada tag b:with untuk mendefinisikan beberapa varial, yang aku lihat ada beberapa hal:
Berikut adalah daftar lengkap nilai yang digunakan dalam kode tersebut, dipisahkan dengan koma:
1. **Genre2:** Yaoi, Yuri
2. **Genre:** Action, Adventure, Comedy, Demons, Drama, Ecchi, Fantasy, Game, Gore, Harem, Historical, Horror, Isekai, Josei, Magic, Martial Arts, Mecha, Military, Music, Mystery, Psychological, Romance, Romcom, School, School Life, Sci-Fi, Seinen, Shoujo, Shoujo Ai, Shounen, Shounen Ai, Slice of Life, Sports, Super Power, Supernatural, Survival, Thriller, Tragedy, Vampire
3. **Language:** SUB, DUB, Viral
4. **Type:** TV, Movie, OVA, ONA, Special, Donghua
5. **Quality:** WEB-DL, BD, CAM, HD, HDCAM
6. **Status:** Ongoing, Completed, Cancelled, Hiatus, Dropped, Coming Soon
7. **Mode:** Series, Stream, Episode
👋
Berikut adalah daftar lengkap nilai yang digunakan dalam kode tersebut, dipisahkan dengan koma:
1. **Genre2:** Yaoi, Yuri
2. **Genre:** Action, Adventure, Comedy, Demons, Drama, Ecchi, Fantasy, Game, Gore, Harem, Historical, Horror, Isekai, Josei, Magic, Martial Arts, Mecha, Military, Music, Mystery, Psychological, Romance, Romcom, School, School Life, Sci-Fi, Seinen, Shoujo, Shoujo Ai, Shounen, Shounen Ai, Slice of Life, Sports, Super Power, Supernatural, Survival, Thriller, Tragedy, Vampire
3. **Language:** SUB, DUB, Viral
4. **Type:** TV, Movie, OVA, ONA, Special, Donghua
5. **Quality:** WEB-DL, BD, CAM, HD, HDCAM
6. **Status:** Ongoing, Completed, Cancelled, Hiatus, Dropped, Coming Soon
7. **Mode:** Series, Stream, Episode
Ok.
Genre sudah penuh, tambahkan genre baru di Genre2.
Yang lainnya boleh nambah label baru kalau mau, kecuali Mode.
Genre sudah penuh, tambahkan genre baru di Genre2.
Yang lainnya boleh nambah label baru kalau mau, kecuali Mode.
jika ada waktu luang tuk nonton anime,,,mampir ke blog aku yang masih pemula ini suhu..suhu... 🙏🙏🙏
https://kivanime.my.id
👋
https://kivanime.my.id
Kapan km bikin situs ini? https://kivastreamplayer.blogspot.com/ Cek juga post generator, agar mudah membuat post: https://codehiru.blogspot.com/2024/09/generator-post-all-codepost.html Pilih preset HexaNime_Anilist
👋
What's changed in version 3.4?
👋
Fixing latest update, previously it only support up to 148 posts.
Now its support more than 1000 posts.
Now its support more than 1000 posts.
min di lebar layar seluler, headernya berubah jadi navigasi menu mobile buttom yaa? nah bisa kah di setting jadi tetep ada header di saat mode seluler? tapi menu navigasi bottomnya di mode seluler tetep ada?
👋
Jangan, navigasi atas dan bawah share skrip yg sama.
Kalau navigasi atas muncul, yg bawah tidak berfungsi.
Kalau navigasi atas muncul, yg bawah tidak berfungsi.
min can you make explanation video that how i use this tool
[Link]
to make my post faster in hianime theme
👋
[Link]
to make my post faster in hianime theme
udah lama min,,, kang dayat kan share gratis player nya..
generator post udah kucoba,, tapi tuk gambar nya ,, di slider gak muncul ya min,,
👋
generator post udah kucoba,, tapi tuk gambar nya ,, di slider gak muncul ya min,,
Select preset HexaNime_Anilist
Add Anime ID
Click GetPost
Copy title, labels and the code one by one.
Add Anime ID
Click GetPost
Copy title, labels and the code one by one.
Baru tau semalam.
Itu upload manual aja,
skripnya gk bisa ngambil link external gambar.
Itu upload manual aja,
skripnya gk bisa ngambil link external gambar.
reply
👋
You can copy synopsis and extra info to post stream.
Forum Bot said:
This comment has been removed by the author.
jika ingin menambahkan Type: TV, Movie, OVA, ONA, Special, Donghua, dibagian mana aja ya min?
👋
<b:with value='["TV","Movie","OVA","ONA","Special","Donghua"]' var='Type'>
👋
oh tempat yang sama, aku pikir selain pasang disitu harus pasang di variabel element lain juga.
oh iya min, untuk CN, KR, sama JP di label country apakah masih berlaku, jika iya kenapa tidak ada di <b:width nya? atau di tempat lain setting nya untuk menambahkan label negara lain?
👋
oh iya min, untuk CN, KR, sama JP di label country apakah masih berlaku, jika iya kenapa tidak ada di <b:width nya? atau di tempat lain setting nya untuk menambahkan label negara lain?
Tidak perlaku.
Tolong koreksi kalau aku salah.
Tolong koreksi kalau aku salah.
when will you add latest update section in hexanime
👋
No, I working on other theme.
👋
hello min , i am thinking to stop the moopa bt project and make it only anime blogger theme due to my college workload ( exams and all ) . if needed you can takeover the project .
thanking you ,
anix realm ( Anix Themes )
👋
thanking you ,
anix realm ( Anix Themes )
Ok, that was unfortunate.
Sorry, I have my own project to work with.
👋
Sorry, I have my own project to work with.
okay np min , btw look at this theme min : https://instintoplay.blogspot.com/ . i saw it from one of the forum websites
👋
Great design. Bookmarked.
The website freeze up, can you give me screenshot of its post?
👋
The website freeze up, can you give me screenshot of its post?
yeah sure !
Post Info : https://ibb.co/sFCs5js
Post Stream : https://ibb.co/xDgD0K9
👋
Post Info : https://ibb.co/sFCs5js
Post Stream : https://ibb.co/xDgD0K9
Thanks.
👋
welcome min , can you please teach me how to create a landing and homepage like hexanime for different themes ?
👋
I can't give you exact details.
Basically you use cond: <b:if cond='data:view.isHomepage'>
your landing page
<b:else/>
...
</b:if>
Although it looks simple, but it is quite complicated in practice.
Basically you use cond: <b:if cond='data:view.isHomepage'>
your landing page
<b:else/>
...
</b:if>
Although it looks simple, but it is quite complicated in practice.
Hello friend, I already bought the HexaNime V2 theme through gumroad, where I can see the github invitation to get updates https://github.com/creacionxd
my email is kreacionxd@gmail.com
👋
my email is kreacionxd@gmail.com
Thank you.
Check your email and accept my invitation.
Check your email and accept my invitation.
I have a problem with the publications, in the desktop version it is not visible but in mobile it is, how can I remove it...
https://imgbox.com/BVQvEx3M
👋
https://imgbox.com/BVQvEx3M
Do you want to remove related post desktop?
Find this: <div class='bg-[--201f31] relative'> Scroll down, find and remove this: <b:include cond='data:skin.vars.rPv2 == "1px" and !data:blog.isMobileRequest' name='relatedPostv2'/>
Find this: <div class='bg-[--201f31] relative'> Scroll down, find and remove this: <b:include cond='data:skin.vars.rPv2 == "1px" and !data:blog.isMobileRequest' name='relatedPostv2'/>
min tau cara membagi file xml blogger? aku mo import malah di anggap spam. isi post ny dah lbh 1000+
👋
Aku penah nyoba sampai 300 post, tidak masalah.
Aku ingin tanya, sudah berapa kali kamu upload post hari ini?
Di blogger maksimal 5 kali upload post DI SEMUA AKUN.
Tunggu sampai besok baru reset kembali.
Setelah di download, format code dengan prettier di vsCode.
Hapus tag entry <entry>
...
</entry> Coba hapus 500 post dulu.
Tutorial: [Link]
👋
Aku ingin tanya, sudah berapa kali kamu upload post hari ini?
Di blogger maksimal 5 kali upload post DI SEMUA AKUN.
Tunggu sampai besok baru reset kembali.
Setelah di download, format code dengan prettier di vsCode.
Hapus tag entry <entry>
...
</entry> Coba hapus 500 post dulu.
Tutorial: [Link]
cara di HP gmn min? ngk punya PC, blog ku di hapus gara2 kena dmca mulu. untung backup tiap hari tp mo import ngk bisa
👋
Susah ngeditnya di hp.
Upload ke gdrive, kirim linknya ke email: wernayasa@gmail.com
👋
Upload ke gdrive, kirim linknya ke email: wernayasa@gmail.com
udah minta bantu ke temen. mksh min tutorial ny
Hello friend, I have a problem with the player, when I am watching an anime with 12 episodes and I go through episode 3 and then I want to watch another one that only has 1 episode, nothing comes out.
error capture command
https://imgbox.com/efjaJRil
error capture command
https://imgbox.com/efjaJRil
HexaNime adalah tema blogger buat streaming anime. Tema ini merupakan generasi ke 2 tema streaming yg di develop EmissionHex.
Template Blogger ini dapat dipakai untuk situs Unduh Film dan Tonton Online. Ada kategori berbeda jika kalian ingin membuat batch aninme.
Template ini juga sepenuhnya responsif, dan menyesuaikan tampilan di ponsel, beradaptasi dengan tampilan tampilan app apabila diapaki di ponsel.
Dokumentasi