#1
Han Haoyu
,
#2
Han Haoyu
,
#3
White
,
#4
Han Haoyu
,
#5
Han Haoyu
,
#6
,
#7
,
#8
Baca komik
,
#9
,
#10
,
#11
Ichigo
,
#12
,
#13
,
#14
❤️
Wernayasa
,
#15
Han Haoyu
,
#16
,
#17
,
#18
ArkFan
,
#19
,
#20
,
#21
,
#22
,
#23
,
#24
,
#25
,
#26
,
#27
,
#28
Han Haoyu
,
#29
,
#30
,
#31
,
#32
,
#33
Harry
,
#34
,
#35
,
#36
,
#37
,
#38
,
#39
,
#40
,
#41
,
#42
,
#43
❤️
Wernayasa
,
#44
,
#45
𐌃𐌉𐌃𐌀
,
#46
,
#47
,
#48
,
#49
,
#50
,
#51
,
#52
,
#53
Zion
,
#54
,
#55
,
#56
icegrim
,
#57
,
#58
,
#59
,
#60
,
#61
,
#62
,
#63
,
#64
,
#65
,
#66
,
#67
,
👋
Forum Bot said:
This comment has been removed by the author.
Hapus
Balas
oh iya itu setting defaultnya juga belum berfungsi (hao udah disable pada js nya padahal), tetapi masih ga berfungsi. ntah yaa gimana cara biar pas klik setting default si image bisa tanpa mode slider? ada yang bisa bantu kah?
Tidak ada gambar, coba bikin post baru.
Mungkin ini pengnaruh dari CSS tema.
Mungkin ini pengnaruh dari CSS tema.
Forum Bot said:
This comment has been removed by the author.
Javascript yg di external host sudah mati.
Skrip ini: <link href='https://cdn.staticaly.com/gh/Arleth98/2019/8c8b1630/slick.css' rel='stylesheet' type='text/css'/>
<script src='https://cdn.staticaly.com/gh/Arleth98/2019/d642f925/slickdz.js' type='text/javascript'/> Aku gk punya backupnya, jadi gk bisa di recover.
Tombol likenya ada bug, kalau km double klik bisa menghasilkan dislike.
👋
Skrip ini: <link href='https://cdn.staticaly.com/gh/Arleth98/2019/8c8b1630/slick.css' rel='stylesheet' type='text/css'/>
<script src='https://cdn.staticaly.com/gh/Arleth98/2019/d642f925/slickdz.js' type='text/javascript'/> Aku gk punya backupnya, jadi gk bisa di recover.
Tombol likenya ada bug, kalau km double klik bisa menghasilkan dislike.
Di letakkan di mana ya?
Aku pasang di bawah skrip firebase, bugnya masih ada. Kalau double klik angka 0: -1
Kalau double klik angka positif: +1
Kalau double klik angka negatif: -1 Biarin aja deh, gk perlu di perbaiki. Ini bukan bug, tapi fitur.
Orang bisa like dan dislike sebanyak mereka mau.
👋
Aku pasang di bawah skrip firebase, bugnya masih ada. Kalau double klik angka 0: -1
Kalau double klik angka positif: +1
Kalau double klik angka negatif: -1 Biarin aja deh, gk perlu di perbaiki. Ini bukan bug, tapi fitur.
Orang bisa like dan dislike sebanyak mereka mau.
waktu ditest dilocalhost itu normal...aku juga baru tau ada bug ini.
document.addEventListener("DOMContentLoaded", function() {
// URL Database Firebase
var dbLike_hiru = "https://hiru-af04f-default-rtdb.firebaseio.com";
var delayLike = 2000; //2 detik
var likes_btn_class_hr = document.querySelectorAll('.hartomy-bookmark-btn');
var lokasi_likes_ditampilakan_hr = document.querySelectorAll('.likes_ditampilkan_hiru');
if (dbLike_hiru) {
if (likes_btn_class_hr && lokasi_likes_ditampilakan_hr ) {
function NFrtBookmark(nZeroBook) {
if (nZeroBook === 0) {
return 0;
} else if (nZeroBook >= 1000000000) {
const formatted_angka = (nZeroBook / 1000000000).toFixed(1);
return formatted_angka.endsWith('.0') ? formatted_angka.slice(0, -2) + 'M' : formatted_angka + 'M';
} else if (nZeroBook >= 1000000) {
const formatted_angka = (nZeroBook / 1000000).toFixed(1);
return formatted_angka.endsWith('.0') ? formatted_angka.slice(0, -2) + 'JT' : formatted_angka + 'JT';
} else if (nZeroBook >= 1000) {
const formatted_angka = (nZeroBook / 1000).toFixed(1); return formatted_angka.endsWith('.0') ? formatted_angka.slice(0, -2) + 'K' : formatted_angka + 'K';
} else {
return nZeroBook;
}
}
likes_btn_class_hr.forEach(function(likes_btn_hiru, dataLike) {
var websiteKu_hr = "Hirutshuji";
var postId_hr = likes_btn_hiru.getAttribute('data-id');
var postUrl_hr = likes_btn_hiru.getAttribute('data-link');
var postTitle_hr = likes_btn_hiru.getAttribute('data-title');
var tampilkan_likes_hr = lokasi_likes_ditampilakan_hr[dataLike];
var localStorageid = `likeStatus_${websiteKu_hr}_${postId_hr}`;
var likeStatus = localStorage.getItem(localStorageid) === 'true';
likes_btn_hiru.addEventListener('click', function() {
likes_btn_hiru.disabled = true; fetch(`${dbLike_hiru}/likes_hiru/${websiteKu_hr}/${postId_hr}.json`)
.then(response => response.json())
.then(data => {
var likes_saat_ini = data ? data.like || 0 : 0;
var angka_like_hr = parseInt(tampilkan_likes_hr.textContent, 10) || 0;
if (!likeStatus) {
angka_like_hr = 1;
} else {
angka_like_hr = -1;
}
var likes_hr = likes_saat_ini + angka_like_hr;
tampilkan_likes_hr.textContent = likes_hr;
//struktur data realtime
var likeData = {
web: websiteKu_hr,
idpost: postId_hr,
url: postUrl_hr,
like: likes_hr,
title: postTitle_hr
};
likeStatus = !likeStatus;
localStorage.setItem(localStorageid, likeStatus.toString());
fetch(dbLike_hiru + `/likes_hiru/${websiteKu_hr}/${postId_hr}.json`, {
method: 'PUT',
body: JSON.stringify(likeData),
headers: {
'Content-Type': 'application/json'
}
});
})
.catch(error => {
console.error('gagal update data likes:', error);
}).finally(() => {
setTimeout(() => {
likes_btn_hiru.disabled = false;
}, delayLike);
});
});
fetch(`${dbLike_hiru}/likes_hiru/${websiteKu_hr}/${postId_hr}.json`)
.then(response => response.json())
.then(data => {
var angka_like_hr = 0;
if (data) {
angka_like_hr = data.like || 0;
}
tampilkan_likes_hr.textContent = NFrtBookmark(angka_like_hr);
})
.catch(error => {
console.error('Error Update datanya: ', error);
});
});
} else {
console.log("error button like: class (.button_likes_hiru) dan class (.likes_ditampilkan_hiru) gak ada.");
}
} else {
console.log("error button like: url database (dbLike_hiru) kosong atau error.");
} });
document.addEventListener("DOMContentLoaded", function() {
// URL Database Firebase
var dbLike_hiru = "https://hiru-af04f-default-rtdb.firebaseio.com";
var delayLike = 2000; //2 detik
var likes_btn_class_hr = document.querySelectorAll('.hartomy-bookmark-btn');
var lokasi_likes_ditampilakan_hr = document.querySelectorAll('.likes_ditampilkan_hiru');
if (dbLike_hiru) {
if (likes_btn_class_hr && lokasi_likes_ditampilakan_hr ) {
function NFrtBookmark(nZeroBook) {
if (nZeroBook === 0) {
return 0;
} else if (nZeroBook >= 1000000000) {
const formatted_angka = (nZeroBook / 1000000000).toFixed(1);
return formatted_angka.endsWith('.0') ? formatted_angka.slice(0, -2) + 'M' : formatted_angka + 'M';
} else if (nZeroBook >= 1000000) {
const formatted_angka = (nZeroBook / 1000000).toFixed(1);
return formatted_angka.endsWith('.0') ? formatted_angka.slice(0, -2) + 'JT' : formatted_angka + 'JT';
} else if (nZeroBook >= 1000) {
const formatted_angka = (nZeroBook / 1000).toFixed(1); return formatted_angka.endsWith('.0') ? formatted_angka.slice(0, -2) + 'K' : formatted_angka + 'K';
} else {
return nZeroBook;
}
}
likes_btn_class_hr.forEach(function(likes_btn_hiru, dataLike) {
var websiteKu_hr = "Hirutshuji";
var postId_hr = likes_btn_hiru.getAttribute('data-id');
var postUrl_hr = likes_btn_hiru.getAttribute('data-link');
var postTitle_hr = likes_btn_hiru.getAttribute('data-title');
var tampilkan_likes_hr = lokasi_likes_ditampilakan_hr[dataLike];
var localStorageid = `likeStatus_${websiteKu_hr}_${postId_hr}`;
var likeStatus = localStorage.getItem(localStorageid) === 'true';
likes_btn_hiru.addEventListener('click', function() {
likes_btn_hiru.disabled = true; fetch(`${dbLike_hiru}/likes_hiru/${websiteKu_hr}/${postId_hr}.json`)
.then(response => response.json())
.then(data => {
var likes_saat_ini = data ? data.like || 0 : 0;
var angka_like_hr = parseInt(tampilkan_likes_hr.textContent, 10) || 0;
if (!likeStatus) {
angka_like_hr = 1;
} else {
angka_like_hr = -1;
}
var likes_hr = likes_saat_ini + angka_like_hr;
tampilkan_likes_hr.textContent = likes_hr;
//struktur data realtime
var likeData = {
web: websiteKu_hr,
idpost: postId_hr,
url: postUrl_hr,
like: likes_hr,
title: postTitle_hr
};
likeStatus = !likeStatus;
localStorage.setItem(localStorageid, likeStatus.toString());
fetch(dbLike_hiru + `/likes_hiru/${websiteKu_hr}/${postId_hr}.json`, {
method: 'PUT',
body: JSON.stringify(likeData),
headers: {
'Content-Type': 'application/json'
}
});
})
.catch(error => {
console.error('gagal update data likes:', error);
}).finally(() => {
setTimeout(() => {
likes_btn_hiru.disabled = false;
}, delayLike);
});
});
fetch(`${dbLike_hiru}/likes_hiru/${websiteKu_hr}/${postId_hr}.json`)
.then(response => response.json())
.then(data => {
var angka_like_hr = 0;
if (data) {
angka_like_hr = data.like || 0;
}
tampilkan_likes_hr.textContent = NFrtBookmark(angka_like_hr);
})
.catch(error => {
console.error('Error Update datanya: ', error);
});
});
} else {
console.log("error button like: class (.button_likes_hiru) dan class (.likes_ditampilkan_hiru) gak ada.");
}
} else {
console.log("error button like: url database (dbLike_hiru) kosong atau error.");
} });
Ini balas kak hiru atau Hao kak?
👋
Untukmu
👋
Ahhh iyaa masalah button nanti Hao mau pakai yang premium dari kak hiru kak, cuman ini lagi mau rombak beberapa style dan fitur di ZV5, ini masih belajar CSS buat nerapin fitur2nya.
But masalah image dengan 3 gaya itu kenapa ga berfungsi yang scrollnya yah kak? (Default). Hao engga tau apa penyebabnya, mungkin bisa dibantu check? (Ada button floating sebelah kiri bawah, itu DJ klik akan muncul opsinya)
But masalah image dengan 3 gaya itu kenapa ga berfungsi yang scrollnya yah kak? (Default). Hao engga tau apa penyebabnya, mungkin bisa dibantu check? (Ada button floating sebelah kiri bawah, itu DJ klik akan muncul opsinya)
Help I think that after I gave to monetize with Google Adsense I got that above the Slider that can be removed?
Image: https://cdn.discordapp.com/attachments/1196713414186258434/1197643573382881280/IMG_4909.png?ex=65bc037f&is=65a98e7f&hm=a1551fd0aff3b6b49dc943d48da24e0a867d34d8f21e3b7f294c10833e842126&
👋
Image: https://cdn.discordapp.com/attachments/1196713414186258434/1197643573382881280/IMG_4909.png?ex=65bc037f&is=65a98e7f&hm=a1551fd0aff3b6b49dc943d48da24e0a867d34d8f21e3b7f294c10833e842126&
Find: <!--</head>--></head> Replace with: </head>
ada yang tau cara sejajarin antara svg dan teksnya? [Link]
👋
Tidak yakin tapi cobalah vertical-align: sub;
👋
.buttonloginA {
align-items: center;
}
👋
align-items: center;
}
Thank you very much I have another question I can add in the menu options such as:
1. Option for Home
2. Option for discord
Image: https://cdn.discordapp.com/attachments/1196713414186258434/1198879032331218987/IMG_4930.png?ex=65c0821b&is=65ae0d1b&hm=1be731815c4e22a739c81afaace42fb2d7f3ed7d467fb69f67547cc67510aea1&
👋
1. Option for Home
2. Option for discord
Image: https://cdn.discordapp.com/attachments/1196713414186258434/1198879032331218987/IMG_4930.png?ex=65c0821b&is=65ae0d1b&hm=1be731815c4e22a739c81afaace42fb2d7f3ed7d467fb69f67547cc67510aea1&
aloo kak, udah hao coba tapi masih tidak bisa, makasih udah bantu jawab yaa
👋
udah hao coba juga kak wernayasaaa, tapi ga berubah center juga posisi teks di dalam buttonnya.
👋
mungkin Anda lupa menambahkan svg setelah kelas, misalnya button svg{vertical-align: sub;}
Forum Bot said:
This comment has been removed by the author.
You can add more menu on Layout
Coba kecilkan icon svgnya sesuai font.
Karena iconnya lebih dari font besar menyebabkan illusi di mata.
Karena iconnya lebih dari font besar menyebabkan illusi di mata.
cara bikin widget komentar di Zeistmanga V5 ada 2 versi (blogger & disquss) gimana yaa? refrensi Zeistmanga V6
👋
Besok aku buatkan tutorialnya.
👋
in manga chapter page when cliking on the manga title [Screenshot] and then it goes to [Screenshot] make that dont show the Chapter labels
👋
Okee makasih kakk, ditunggu yaaa.
👋
how to turn this labels [Screenshot] to flag
👋
use the custom redirects.
Min auto slider postingan yg di hompage tema zeistv5 bisa auto slider infinited ga kaya tema zeistv6?
👋
Find: absolute po manga
Follow this [tutorial]
Follow this [tutorial]
Engk bisa.
👋
wahhhh thank u kakkkk, hao coba dulu bikin stylenya yahhh, maybe hao bakal bikin pop up sihh, entah coba aja nanti, makasih sekali lagii.
ini disquss nya masih punya scanlation ya kak?
👋
Engk.
👋
Forum Bot said:
This comment has been removed by the author.
iya bener masih scanslation tadi kak, barusan hao ganti udah ga ada iklannya.
tinggal yang kontainer blogger comment aja terlalu panjang, gimana yaa benerinnya?
👋
tinggal yang kontainer blogger comment aja terlalu panjang, gimana yaa benerinnya?
Ada ga min codenya yg auto slider infinted :v, mau saya pake, terus min bisa ga taruh chanel discord di bagian hompage, waktu itu saya liat di web orang ada yg kaya gitu min, chanel discord ditaruh di hompage, mau saya taruh di multi tab discord ini [Link] saya min
👋
how to change when bookmarked on hover [Screenshot] to a diffrent color
👋
Min itu img author bloggernya ga ada,gimana caranya supaya ada imgnya, terus yg discordnya ga jadi,mau saya pake recen coment blogger,[Link] testnya min
👋
Baca komik how did u make a loader for chapter
Disqusku memang banyak iklannnya.
Bakal normal kalau ada komentar.
Bakal normal kalau ada komentar.
Find: .menu-item
Change background-color to whatever you want.
Change background-color to whatever you want.
Untuk avatar author coba ganti: <b:if cond='data:cb.level.authorAvatarSrc != "//resources.blogblog.com/img/blank.gif"'>
<img class='post-thumb lazy' expr:alt='data:cb.level.author' expr:data-src='resizeImage(data:cb.level.authorAvatarSrc, 100, "1:1")' expr:title='data:cb.level.author' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</b:if> Dengan : <b:if cond='data:cb.level.authorAvatarSrc != "//resources.blogblog.com/img/blank.gif"'>
<img class='post-thumb lazy' expr:alt='data:cb.level.author' expr:src='resizeImage(data:cb.level.authorAvatarSrc, 100, "1:1")' expr:title='data:cb.level.author' loading='lazy'/>
<b:else/>
<img alt='Anonymous' class='post-thumb lazy' src='https://upload.wikimedia.org/wikipedia/commons/a/a6/Anonymous_emblem.svg' title='Anonymous'/>
</b:if> Ini slider yg kupakai buatan Rasgane: [Link], masalahnay tidak ada CSS karena aku memakai Tailwindcss.
👋
<img class='post-thumb lazy' expr:alt='data:cb.level.author' expr:data-src='resizeImage(data:cb.level.authorAvatarSrc, 100, "1:1")' expr:title='data:cb.level.author' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</b:if> Dengan : <b:if cond='data:cb.level.authorAvatarSrc != "//resources.blogblog.com/img/blank.gif"'>
<img class='post-thumb lazy' expr:alt='data:cb.level.author' expr:src='resizeImage(data:cb.level.authorAvatarSrc, 100, "1:1")' expr:title='data:cb.level.author' loading='lazy'/>
<b:else/>
<img alt='Anonymous' class='post-thumb lazy' src='https://upload.wikimedia.org/wikipedia/commons/a/a6/Anonymous_emblem.svg' title='Anonymous'/>
</b:if> Ini slider yg kupakai buatan Rasgane: [Link], masalahnay tidak ada CSS karena aku memakai Tailwindcss.
Min how to make a custom 404 like zm v6
👋
Hi a question, how can I place this only so that it appears on the main page and where the synopsis is, except for the chapters?
Image:
https://cdn.discordapp.com/attachments/1196713414186258434/1200581684773539910/photo-output.png?ex=65c6b3d3&is=65b43ed3&hm=b887a0e232b3e70f84530f4eb89aeee812a23d9290b346530e2f9089c789f4ba&
👋
Image:
https://cdn.discordapp.com/attachments/1196713414186258434/1200581684773539910/photo-output.png?ex=65c6b3d3&is=65b43ed3&hm=b887a0e232b3e70f84530f4eb89aeee812a23d9290b346530e2f9089c789f4ba&
all i know is that if u put the widget in this
your Widget code
it wull only apear on hompage
your Widget code
it wull only apear on hompage
widget code
How to make iPhone status bar or any phone’s status bar the Color of the navigation bar
[Screenshot]
👋
[Screenshot]
Forum Bot said:
This comment has been removed by the author.
Sama ini min komentar bloggernya kalo mode gelap ga keliatan teksnya [Screenshot],ini [Link]nya min, terus itu yg Slider v2 gagal min ada tutornya ga? Saya sudah coba ikutin yg di github,saya pake link yg itu min
👋
Min itu yg sliderv2 udh bisa tapi ga ada gambarnya :v, cssnya ga tau apa yg perlu dipasang, untuk sliderv2 bisa ga pake code css recomendation,terus yg untuk auto slider infinitednya itu apa saja cssnya min, takut ke hapus ntar di classnya,dan komentar blogger di bikin jadi darkmode min,soalny ga keliatan kalo mode gelap
👋
@Anonymous
Hi, your comment cause some problem, I had to delete it.
This is your code: <b:comment>ADDRESS BAR COLOR (MOBILE ONLY)</b:comment>
<b:comment>Chrome, Firefox OS, Opera, Vivaldi</b:comment>
<meta content='#1ab188' name='theme-color'/>
<b:comment>Windows Phone</b:comment>
<meta content='#1ab188' name='msapplication-navbutton-color'/>
<b:comment>iOS Safari</b:comment>
<meta content='#1ab188' name='apple-mobile-web-app-status-bar-style'/>
<meta content='yes' name='apple-mobile-web-app-capable'/>
Hi, your comment cause some problem, I had to delete it.
This is your code: <b:comment>ADDRESS BAR COLOR (MOBILE ONLY)</b:comment>
<b:comment>Chrome, Firefox OS, Opera, Vivaldi</b:comment>
<meta content='#1ab188' name='theme-color'/>
<b:comment>Windows Phone</b:comment>
<meta content='#1ab188' name='msapplication-navbutton-color'/>
<b:comment>iOS Safari</b:comment>
<meta content='#1ab188' name='apple-mobile-web-app-status-bar-style'/>
<meta content='yes' name='apple-mobile-web-app-capable'/>
Tambahkan CSS ini: .dark-mode .comments li{background: #222;}
.dark-mode .comments li li .comment-block {background-color: #33333380}
.dark-mode .comments li .comment-header .user {color: white}
.dark-mode .comments li li .comment-block {background-color: #33333380}
.dark-mode .comments li .comment-header .user {color: white}
CSS sudah kutambahkan, lihat di github.
Masih belum sempurna. Akan diupdate nanti.
Masih belum sempurna. Akan diupdate nanti.
Copy this: <b:comment>ADDRESS BAR COLOR (MOBILE ONLY)</b:comment>
<b:comment>Chrome, Firefox OS, Opera, Vivaldi</b:comment>
<meta content='#1ab188' name='theme-color'/>
<b:comment>Windows Phone</b:comment>
<meta content='#1ab188' name='msapplication-navbutton-color'/>
<b:comment>iOS Safari</b:comment>
<meta content='#1ab188' name='apple-mobile-web-app-status-bar-style'/>
<meta content='yes' name='apple-mobile-web-app-capable'/> Paste bellow <head> Thank you Anonymous for providing this code.
<b:comment>Chrome, Firefox OS, Opera, Vivaldi</b:comment>
<meta content='#1ab188' name='theme-color'/>
<b:comment>Windows Phone</b:comment>
<meta content='#1ab188' name='msapplication-navbutton-color'/>
<b:comment>iOS Safari</b:comment>
<meta content='#1ab188' name='apple-mobile-web-app-status-bar-style'/>
<meta content='yes' name='apple-mobile-web-app-capable'/> Paste bellow <head> Thank you Anonymous for providing this code.
Sorry, I can't add the 404 page.
Forum Bot said:
This comment has been removed by the author.
how to move a widget to be the first
i mean be at top of others
i mean be at top of others
how to make post ignore the manga post layout and let my custom post layout instead for blog style posts
👋
forget it i figured it out
Screenshot codenya dan dimana letak codenya?
👋
halo min saya pengguna baru untuk template zeist manga, kalo untuk post light novel itu lebih baik pake yang versi 4 atau 5? trus cara biar rekomendasi label aktif saat nulis postingan gimana soalnya saya gak muncul rekomendasi labelnya pake yang 5
👋
aku letakkan di paling atas [Link]
👋
Maksumu gambarnya mau di hilangkan?
Tambahkan class : hidden <img class="hidden" src
👋
Tambahkan class : hidden <img class="hidden" src
Ahhh iyaa, oke thank u min.
How to make the new tag that next to chapter apear only when I make it apear and not be there
👋
what is the image size for header?
👋
Any size.
Btw which header?
Give me a screenshot.
Btw which header?
Give me a screenshot.
We can't put New tag on chapter.
👋
i am talking about this [Screenshot]
👋
Yes, we can't.
We can't put label or select which New tag appear.
We can't put label or select which New tag appear.
Why are the chapters not shown in latest release? I am using the tags Series, Project
👋
why does searchList() [Screenshot] not work when search for chapter in maga page
👋
Put label: Chapter on post chapter
Watch if you forgot: [Gdrive]
Watch if you forgot: [Gdrive]
Go to post chapter, add label chapter followed by title label: Chapter,Manga Title Do not put space between labels.
[Basic setup]
👋
[Basic setup]
In the script function searchList() try replacing the code ul = document.getElementById("myUL"); with ul = document.getElementById("clwd");
👋
thanks it worked
Thanks anonymous, sometimes I don't understand my own themes.
Why is there duplicate of next and prev chapter in chapter page both at top and bottom
👋
But what I am trying to upload is a novel instead of manga should I put the label Novel?
👋
How can I remove 'Show Comments' and show comments so that it does not load I am using disqus
👋
Maybe delete this code, not sure. <div class='flex jcc'>
<div id='buttonDisqs' onclick='disqusLaz(this)' role='button'>Show Comments</div>
</div>
<div id='buttonDisqs' onclick='disqusLaz(this)' role='button'>Show Comments</div>
</div>
Post chapter can only contain 2 labels:Chapter,Your manga title Do not add more label.
No, use label: Chapter
how to add live search
👋
No free source code available.
How can I make it so that when I touch the title of the series it redirects to where the synopsis and chapters are directly and not where all the chapters are located?
Image: https://cdn.discordapp.com/attachments/1196713414186258434/1202516773274914896/IMG_5041.png?ex=65cdbe04&is=65bb4904&hm=cfd35b44c2c1db905a45783ec97f84468bcb6fce0d998353871bcaa30241d378&
👋
Image: https://cdn.discordapp.com/attachments/1196713414186258434/1202516773274914896/IMG_5041.png?ex=65cdbe04&is=65bb4904&hm=cfd35b44c2c1db905a45783ec97f84468bcb6fce0d998353871bcaa30241d378&
https://youtu.be/38lJXXj16yM
how to make a manga schedule page or can i get it
👋
Unfortunately no, I can't share the code.
kak wernayasa, hao mau tanya untuk sliderv2 itu kenapa ga bisa di pakai pakai zm5 yaa? apakah ada kode pemanggilnya?
👋
I have a problem when I put a link or code for discord in input for chapters it doesn't work is it a template problem? I am using it for text in novel
👋
I recommend using the ZeistManga v6.
Remove this CSS line: .check-box {user-select: none;pointer-events: none;}
Kurang blogger script: [Github] paste di atas: name='OwlCarousel2'
👋
Forum Bot said:
This comment has been removed by the author.
how to make [Screenshot] just have like 7 mangas only
👋
Wait until someone click on it.
👋
No what I mean is the there always be like just 7 manga from my choosing there
👋
You can't chose any manga.
Try to edit it in Blogger Layout Widget and choose the Maximum number of shown posts 10 to 7
where can i get demo content for this
👋
[ZM_Backup_Post-07-09-2022.xml]
Upload via blogger settings.
Upload via blogger settings.
does any one know how to change the slider to oul carasoul
I have a problem recommendation or Rekomendasi nothing appears to me only when I'm on the iPad or computer if it comes out but not on mobile what do I do?
👋
how to make the slider bigger like this [Screenshot]
👋
What is the name of the site?
👋
In Hot Manga only one series appears because? How can I make the others I have appear?
👋
the screenshot was taken from kumareader it similir to this blogger theme slider but just using owl carsoul whta i want to know is just jow to make the img bigger like that i have tried multiple time but still can't get like that.
👋
when opening hot manga widget in layout, change (most viewed to [ last 7 days]) [Screenshot]
👋
Hot Manga base on popular post, we can't pick and chose which one to appear.
Thank you.
Or select All time if you want to populate empty slot.
I regret choosing Popular Post widget for Hot Manga, because its create empty slot all the time.
If I have time I will release zm v5 2024 edition.
Or select All time if you want to populate empty slot.
I regret choosing Popular Post widget for Hot Manga, because its create empty slot all the time.
If I have time I will release zm v5 2024 edition.
I don't know how to use Owl Carousel.
👋
I don’t mean using owl
I just want to make the img bigger like the screenshot
👋
I just want to make the img bigger like the screenshot
Ok, I will add new slider tomorrow.
Recomendation in the main page is not shown I always have to touch reload how can I make it always show without touching reload please?
👋
How to change the slider arrow to bullets
👋
What browser do you use?
Which recommendation?
Which recommendation?
Wait for next update.
[Demo]
👋
[Demo]
great
and if i may say why not add, for @media screen and (max-width:1024px) margin: 0px 20px !important;
to make like this for mobile [Screenshot] for more subtle look
👋
and if i may say why not add, for @media screen and (max-width:1024px) margin: 0px 20px !important;
to make like this for mobile [Screenshot] for more subtle look
Sure.
How can I remove Other from the top menu?
👋
Find: <b:includable id='pageList'> Delete marked area: [Screenshot]
How can I make the button to change from dark to white also affect the text in the chapters? I am publishing text
👋
No, sorry.
I don't have a script like that.
I don't have a script like that.
How can I prevent all series from being displayed in Project Update?
And also when I put the Project tab they are not shown there either, I just want to show them in Latest release.
👋
And also when I put the Project tab they are not shown there either, I just want to show them in Latest release.
If you want to show series with the label Manhwa. Just replace the 'Update' to 'Manhwa'. For example update.mainItem = ['Update']; to update.mainItem = ['Manhwa'];
Remove label Project
For Latest Release add label: Manga
Manhua
Manhwa Just pick one label.
For Latest Release add label: Manga
Manhua
Manhwa Just pick one label.
How to put an image at the bottom of the chapter in the code and always dates there so I don’t have to always put in the chapter post
👋
Do you have example for this?
Maybe from your or other site, screenshot or something for me to copy the design.
Maybe from your or other site, screenshot or something for me to copy the design.
Min I still have the problem when I add project the chapters are shown in project update and latest release I just want to show in latest release the chapter not in project update as in this web site:
https://www.aresscanlation.com
👋
https://www.aresscanlation.com
Did you modified the js code? standard label is Update
Screenshot your label and screenshot your script.
Post chapter must contain word Chapter on title.
Or try copy and paste my working label: Martial Arts,LN,Adventure,Ch 24 Vol 1,K,Katainaka no Ossan,Update,8.54,Series,Project,Fantasy,Ongoing,Action
Martial Arts, [Demo]
Screenshot your label and screenshot your script.
Post chapter must contain word Chapter on title.
Or try copy and paste my working label: Martial Arts,LN,Adventure,Ch 24 Vol 1,K,Katainaka no Ossan,Update,8.54,Series,Project,Fantasy,Ongoing,Action
Martial Arts, [Demo]
Try out ZeistManga v5.5 new update.
[Download]
[Download]
How to make a tags section like this [Screenshot] in manga page beneath the comments
Do you know how to fix the thread on Disqus? There are two separate threads—one for desktop and the other for mobile (?m=1). I can't see their comments on desktop when they comment using their mobile phone. Is it because of the script or any meta tags on Blogger?
👋
There are script to prevent that.
Check if you already have it. Find: var uri =
Do not minified this script.
Check if you already have it. Find: var uri =
Do not minified this script.
how to increse the sliders durations
great slider
but insted of using all that extra css and flowbite
just use swiper.js
👋
but insted of using all that extra css and flowbite
just use swiper.js
Wow, nice slider library.
Thanks.
Thanks.
How can I modify the button to change from light to dark in version v5.4 the same as the latest version v5.5?
👋
Add class : .dark-mode Are you familiar with CSS?
Upload your button code to github.
Upload your button code to github.
According to another question is it possible to add that to modify the font in the text in the novel as in this example:
https://cdn.discordapp.com/attachments/1204628207224234025/1209778504174932008/IMG_5408.png?ex=65e82907&is=65d5b407&hm=a4e3c664f128cdfff542c2505d007d71a9b37b3791d824c863c2d1a9c4a512c1&
👋
https://cdn.discordapp.com/attachments/1204628207224234025/1209778504174932008/IMG_5408.png?ex=65e82907&is=65d5b407&hm=a4e3c664f128cdfff542c2505d007d71a9b37b3791d824c863c2d1a9c4a512c1&
Rasgane created a theme for light novel.
👋
I can, but I don't have the script.
If you find an open source one, let me know.
If you find an open source one, let me know.
Nice suggestion.
In the next update, can you create an instant page load speed function for the next/previous chapter? This page has similar functionality
https://mskmangaz.blogspot.com/2023/12/chapter-96.html
👋
https://mskmangaz.blogspot.com/2023/12/chapter-96.html
wow, it was almost instant, what a breakthrough :O
Where can I find the owner of this website? facebook , twitter , discord ... ?
👋
Where can I find the owner of this website? facebook , twitter , discord ... ?
This is his channel. I don't have other contact.
[Vũ Trần]
You can buy theme from him. Its perfectly legal.
👋
[Vũ Trần]
You can buy theme from him. Its perfectly legal.
Sorry, I wont' add it.
He made tutorial for that, I don't know which one.
Maybe this: [ [ Tutorial ] Lazyload & instant page loading for Zeistmanga by Vũ Trần ]
Try find in on his YT Channel.
He made tutorial for that, I don't know which one.
Maybe this: [ [ Tutorial ] Lazyload & instant page loading for Zeistmanga by Vũ Trần ]
Try find in on his YT Channel.
tks
👋
Here's the code:
https://www.youtube.com/watch?v=Dt0v7_C7gC8
I do not support code installation. Good compatible code for zeistmanga theme
https://www.youtube.com/watch?v=Dt0v7_C7gC8
I do not support code installation. Good compatible code for zeistmanga theme
why when i put label like (dungeon) as genre for a manga it doesnt show in the manga page [Screenshot]
👋
Menurut kalian ini web seperti apa? untuk aku source yang punya tidak di hapus terus banyak di ganti tapi masih tidak ada kelihatan di ganti, kalau teliti lagi pasti ketemu apa saja di ganti di tampilan ini.
reading464.blogspot.com
👋
reading464.blogspot.com
How can I make a series not appear in the update? I mean, if I want to limit it?
👋
How to make Color tag apear in the Update and project sections like this [Screenshot]
👋
Find: var='Genre' or var='Genre2' Replace label you don't need with Dungeon label.
Any label Start with capital letter.
Any label Start with capital letter.
Remove label: Project
Itu web mu?
Iya, sama kayakna design yg aslinya.
Codenya belum kucek.
Kalau ingin redesign, cari inspirasi dari web komik besar.
Tinggal ganti tampilan doang, karena inti programingnya sudah tersedia.
Aku sarankan mulai dari v5.5.
Banyak hasil mosifikasi yang bagus2, tapi mereka terikat lisensi.
Aku pengen update lisensinya dimana km boleh modifikasi dan jual temanya.
Credit footer boleh dihapus. Tapi dalam tema jangan, tambahkan aja Redesign by: namamu:
Iya, sama kayakna design yg aslinya.
Codenya belum kucek.
Kalau ingin redesign, cari inspirasi dari web komik besar.
Tinggal ganti tampilan doang, karena inti programingnya sudah tersedia.
Aku sarankan mulai dari v5.5.
Banyak hasil mosifikasi yang bagus2, tapi mereka terikat lisensi.
Aku pengen update lisensinya dimana km boleh modifikasi dan jual temanya.
Credit footer boleh dihapus. Tapi dalam tema jangan, tambahkan aja Redesign by: namamu:
Adding Color tag [Tutorial]
Code: .absolute.cl{bottom:3px;left:5px;background-color:#eccf07;font-size:12px;padding:0 6px;border-radius:3px;color:#463e00;font-weight:bold;}
.absolute.cl::before{content:"";display:inline-block;width:12px;height:12px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12px' height='12px' viewBox='0 0 24 24'%3E%3Cpath fill='%23463e00' d='M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5A1.5 1.5 0 0 1 14.5 5A1.5 1.5 0 0 1 16 6.5A1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5A1.5 1.5 0 0 1 9.5 5A1.5 1.5 0 0 1 11 6.5A1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5A1.5 1.5 0 0 1 6.5 9A1.5 1.5 0 0 1 8 10.5A1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9a9 9 0 0 0 9 9a1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1c-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8'/%3E%3C/svg%3E");margin-inline-end:3px;}
var cl = "";
var label = r.find(i => "Color".includes(i));
if ("Color" == label) {
cl = "<span class='absolute cl flex aic'>Color</span>";
} else cl = "";
'+lang+typ+cl+'
Code: .absolute.cl{bottom:3px;left:5px;background-color:#eccf07;font-size:12px;padding:0 6px;border-radius:3px;color:#463e00;font-weight:bold;}
.absolute.cl::before{content:"";display:inline-block;width:12px;height:12px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12px' height='12px' viewBox='0 0 24 24'%3E%3Cpath fill='%23463e00' d='M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5A1.5 1.5 0 0 1 14.5 5A1.5 1.5 0 0 1 16 6.5A1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5A1.5 1.5 0 0 1 9.5 5A1.5 1.5 0 0 1 11 6.5A1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5A1.5 1.5 0 0 1 6.5 9A1.5 1.5 0 0 1 8 10.5A1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9a9 9 0 0 0 9 9a1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1c-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8'/%3E%3C/svg%3E");margin-inline-end:3px;}
var cl = "";
var label = r.find(i => "Color".includes(i));
if ("Color" == label) {
cl = "<span class='absolute cl flex aic'>Color</span>";
} else cl = "";
'+lang+typ+cl+'
A question if I want to add in the menu something where you can see all the series that I have published as I do? What page should I create?
👋
The new demo appears to be broken. Are there any problems with the code? I wanted to try V5.5, if it's, okay?
👋
how to change the hamburger icon to another one because i am trying it doesn't appear to be changing
👋
Manga List.
Only works on v5.5.
Copy: <div id='sitemap_navigation'>
<div id='custom_post_v1' class='custom_post_v1 bc-fff r2 mb-15 s1'>
</div>
</div> Paste on your page.
[Demo]
Only works on v5.5.
Copy: <div id='sitemap_navigation'>
<div id='custom_post_v1' class='custom_post_v1 bc-fff r2 mb-15 s1'>
</div>
</div> Paste on your page.
[Demo]
how to change the font family to Poppins [Screenshot]
👋
What is the problem?
Screenshot if found any.
👋
Screenshot if found any.
I'm using SVG icon.
Change this one: <svg style="width:24px;height:24px" viewBox="0 0 24 24">
<path d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" fill="currentColor"></path>
</svg>
[SVG Icon Library]
👋
Change this one: <svg style="width:24px;height:24px" viewBox="0 0 24 24">
<path d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" fill="currentColor"></path>
</svg>
[SVG Icon Library]
Entire website or just menu?
I will change entire website font from "Fira" to "Poppins", because looks much nicer.
Remove: <link href='https://fonts.googleapis.com/css?family=Fira Sans' rel='stylesheet'/> Replace with: <link href='https://fonts.googleapis.com' rel='preconnect'/>
<link crossorigin='' href='https://fonts.gstatic.com' rel='preconnect'/>
<link href='https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap' rel='stylesheet'/> Replace: font-family:fira sans,sans-serif With: font-family:"Poppins", sans-serif;
👋
I will change entire website font from "Fira" to "Poppins", because looks much nicer.
Remove: <link href='https://fonts.googleapis.com/css?family=Fira Sans' rel='stylesheet'/> Replace with: <link href='https://fonts.googleapis.com' rel='preconnect'/>
<link crossorigin='' href='https://fonts.gstatic.com' rel='preconnect'/>
<link href='https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap' rel='stylesheet'/> Replace: font-family:fira sans,sans-serif With: font-family:"Poppins", sans-serif;
Correction: font-family:"Poppins", sans-serif removing semicolon
sorry what i mean is to make the icon look bigger becouse it small
👋
Change this number: style="width:24px;height:24px"
It’s line this [Screenshot]
👋
You are right, this is broken mess.
Did you update to latest version?
I'm sorry, i can't fix it.
Safari is the weirdo among other major browser.
👋
Did you update to latest version?
I'm sorry, i can't fix it.
Safari is the weirdo among other major browser.
Right that was a problem
But I think it just because of flowbite js so just switched to swiper js and it works fine now
👋
But I think it just because of flowbite js so just switched to swiper js and it works fine now
Is it possible to modify the Latest Release to appear like on this page? Meaning, to have the chapters with borders and also include All Chapters?
Page:
https://flamecomics.com
👋
Page:
https://flamecomics.com
It’s possible but it requires much work on it
Here it is. This is what I see when I look at the demo. There are places that are completely broken. I even tried looking in incognito mode:
https://prnt.sc/sfWqr36GIuq7
https://prnt.sc/ckGQQ5fUgV6m
https://prnt.sc/hpQZQPJUCb2H
👋
https://prnt.sc/sfWqr36GIuq7
https://prnt.sc/ckGQQ5fUgV6m
https://prnt.sc/hpQZQPJUCb2H
Ok, great.
Can i see the result using swiper js?
👋
Can i see the result using swiper js?
Yes, its possible.
I just don't have time working on it.
If you are using PC, use inspect element.
By utilizing CSS you can remove background, give it border and rounded corner.
I just don't have time working on it.
If you are using PC, use inspect element.
By utilizing CSS you can remove background, give it border and rounded corner.
What browser do you use? Safari?
Did you test it on different browser?
Remove flowbite js: <script src='https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js'/>
Some user report this script can cause an error.
Did you test it on different browser?
Remove flowbite js: <script src='https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js'/>
Some user report this script can cause an error.
Forum Bot said:
This comment has been removed by the author.
The new series section by out condition gather the manga and displays it
👋
why does the recommendation section look like this [Screenshot]
👋
the one that doesn't appear seems like this
<li class="cp1_items "><div class="cp1_item"><img alt="Moto Sekai Ichi Subchara Ikusei Nikki: Hai Player, Isekai wo Kouryakuchuu! " class="absolute inset-0 object-cover w-full h-full shadow" loading="lazy" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuHXXFrWE41qTVAMFaytXjre5JXdoJfUg75G8Rmh4SPGthqFTN3fvJCVAoQbMhFo98I9ABrbUuj5GqMQOxHL-aeg4QjCxuEqynca5xjKPsDDZktRKC3Vg0HrnOQ2KriUuY-x_YIvyi-XSy1N1gtKdHsjfpi_em69SihACjoW3iPgyKsJY3yXEm4XRz4w/s320/Moto%20Sekai%20Ichi.jpg"><span class="cp1_status "></span><a href="https://rocker-tes.blogspot.com/2022/06/moto-sekai-ichi-subchara-ikusei-nikki.html"></a><span class="absolute po manga">Manga</span></div><div class="cp1_bigor"><a class="cp1_tt" href="https://rocker-tes.blogspot.com/2022/06/moto-sekai-ichi-subchara-ikusei-nikki.html">Moto Sekai Ichi Subchara Ikusei Nikki: Hai Player, Isekai wo Kouryakuchuu! </a>
<div class="cp1_adds"><span class="cp1_epxs" data-name="">?</span>
<div class="cp1_rating">
<div class="cp1_rating-prc">
<div class="cp1_rtp">
<div class="cp1_rtb"><span style="width:81%"></span></div>
</div>
</div>
<div class="num" content="8.10">8.10</div>
</div></div>
</div></li>
<li class="cp1_items "><div class="cp1_item"><img alt="Moto Sekai Ichi Subchara Ikusei Nikki: Hai Player, Isekai wo Kouryakuchuu! " class="absolute inset-0 object-cover w-full h-full shadow" loading="lazy" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuHXXFrWE41qTVAMFaytXjre5JXdoJfUg75G8Rmh4SPGthqFTN3fvJCVAoQbMhFo98I9ABrbUuj5GqMQOxHL-aeg4QjCxuEqynca5xjKPsDDZktRKC3Vg0HrnOQ2KriUuY-x_YIvyi-XSy1N1gtKdHsjfpi_em69SihACjoW3iPgyKsJY3yXEm4XRz4w/s320/Moto%20Sekai%20Ichi.jpg"><span class="cp1_status "></span><a href="https://rocker-tes.blogspot.com/2022/06/moto-sekai-ichi-subchara-ikusei-nikki.html"></a><span class="absolute po manga">Manga</span></div><div class="cp1_bigor"><a class="cp1_tt" href="https://rocker-tes.blogspot.com/2022/06/moto-sekai-ichi-subchara-ikusei-nikki.html">Moto Sekai Ichi Subchara Ikusei Nikki: Hai Player, Isekai wo Kouryakuchuu! </a>
<div class="cp1_adds"><span class="cp1_epxs" data-name="">?</span>
<div class="cp1_rating">
<div class="cp1_rating-prc">
<div class="cp1_rtp">
<div class="cp1_rtb"><span style="width:81%"></span></div>
</div>
</div>
<div class="num" content="8.10">8.10</div>
</div></div>
</div></li>
Fixed.
Get v5.5.2
Get v5.5.2
Hi, I am not sure what do you mean.
Care to elaborate further.
Care to elaborate further.
why does chapter not appear like yours [Screenshot]
👋
I'm using different label, label start with Ch for example: Ch 33 Do not use label Chapter because its has different function.
how to add color tag to recommendation section in manga page
👋
No tag, i didn't add color tag on recommendation.
Maybe for next update.
Maybe for next update.
Min if I want to create a section like Latest Release in design how do I do I tried to guide me with v4 on YouTube but it was complicated
👋
Change: class="myGridv2" to: class="myGrid" Its on the video, i forgot which section.
Do u still have the original version of zeistmanga like in the video if u got it can I get it
👋
[ZeistManga v4]
Keep in mind that I no longer maintain this theme.
If you encounter a bug or issue, you have to fix it yourself.
Keep in mind that I no longer maintain this theme.
If you encounter a bug or issue, you have to fix it yourself.
Does anybody know where I can get this theme?
Website:[Link]
Website:[Link]
ZeistManga v5 - Versi ini merupakan versi terakhir, tapi bukan berarti saya berhenti mengupdatenya.
Update akan terus dilakukan untuk meningkatkan kestabilan dan penambahan fitur baru.
Ada beberapa code lama yang dihapus, jika kamu update dari versi 1-3, kemungkinan akan banyak yang tidak berfungsi. Juga penghapusan beberapa code yang tidak penting agar tema ini sedikit ramping. Mudah-mudahan tidak menimbulkan masalah.
Tutorial: https://app.box.com/s/11s9y6augxq23c753od0yq8j75p2yrz1
v5.5 – 19 Februari 2024
Apa saja yang baru
Reading History (Vu Tran)
Recent Post Blogger Widget 3
Random Post Slider // Dragable + Mouse Wheels
Script dari dagruel
= Berkas ZIP =