1801 – 1920 of 1920
Halaman tanya jawab tentang topik umum, seputar template atau sharing pengetahuan tentang blogger.
#ads
#10

blog dihapus blogger...
sayangnya gk ada backup hasil modif temanya, jadi aku putuskan tunggu setelah tahun baru aja..aku bikin blog barunya.

harusnya ini sudah selesai dari sebulan setelah blog dihapus, tapi karena pekerjaanku dilaut jadi waktuku gk teratur dan itu bikin semua jadwalku berantakan.

#22

How to fix this Uncaught TypeError: Cannot read properties of null (reading 'appendChild')? <script>/*<![CDATA[*/
document.getElementById('syn-target').appendChild(
document.getElementById('synopsis')
);
/*]]>*/</script>

#24

try changing it to something like this <script>/*<![CDATA[*/
let Data_Sinopsis = document.querySelector("#synopsis");
let Target_Sinopsis = document.querySelector("#syn-target");
Data_Sinopsis && (Data_Sinopsis ? Target_Sinopsis.appendChild(Data_Sinopsis) : Target_Sinopsis.innerHTML = "<p>No Synopsis</p>");
/*]]>*/</script>

#25

Thanks, it works. How about this one, Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')? <script>
/*<![CDATA[*/
var toggle = document.getElementById("toggle");
var content = document.getElementById("content");

toggle.addEventListener("click", function() {
content.style.display = (content.dataset.toggled ^= 1) ? "block" : "none";
});
/*]]>*/
</script>

#26

<script>/*<![CDATA[*/
var toggle = document.getElementById("toggle"),
content = document.getElementById("content");
toggle && content && toggle.addEventListener("click", function() {
content.style.display = (content.dataset.toggled ^= 1) ? "block" : "none"
});
/*]]>*/</script>

#27

Thank you. Very helpful, it reduces the chances of my blog being flagged and locked by Blogger. How about this one it has the same issue with the synopsis? <script>/*<![CDATA[*/
document.getElementById('extra-target').appendChild(
document.getElementById('extra-info')
);
/*]]>*/
</script>
<script>/*<![CDATA[*/
document.getElementById('character-target').appendChild(
document.getElementById('character')
);
/*]]>*/</script>

#28

The method is more or less the same as the synopsis above <script>/*<![CDATA[*/
let Data_extra = document.querySelector("#extra-info");
let Target_extra = document.querySelector("#extra-target");
Data_extra && (Data_extra ? Target_extra.appendChild(Data_extra) : "");
/*]]>*/</script>
<script>/*<![CDATA[*/
let Data_character = document.querySelector("#character");
let Target_character = document.querySelector("#character-target");
Data_character && (Data_character ? Target_character.appendChild(Data_character) : "");
/*]]>*/</script>

#32

Mohon bantuannya bang.

Pengen ubah bagian infinity pager / load more di template colorify punyanya templateify

link demo tema : https://colorifytest.blogspot.com/

menjadi pager number

link tutorial :
https://www.bungfrangki.com/2017/03/page-navigation-with-number.html

Tapi pas bagian tutorial temukan kode itu gak ada.

Mohon bantuannya

#35

Kalau tidak ada cari ini: <b:include cond='data:view.isMultipleItems' name='postPagination'/> atau: name='postPagination'
Biasanya untuk tema custom, namanya sudah berubah, km cari sendiri pakai inspect element.
Bisa ku cari nama tagnya, asalkan ada source codenya tema itu.
Upload ke ke google drive. Kirim ke link downloadnya ke emailku wernayasa@gmail.com .

#49

Kang Nolep: - Aktif
- Spesialis template Anime/Manga
- Tidak ada tema baru
Dayat: - Aktif di backend
- menyediakan skrip tema manga/stream
- tidak ada tema baru
Igniel: -Masih aktif
- Baru update tema
- Tidak ada tema baru
Maki M. Masih aktif update MedianUi
- Tidak ada tema baru
Rio Ilham Hadi(Blanter): - Aktif menyediakan jasa pembuatan website
- Tidak ada tema baru
Sugeng: Aktif jual tema
- Tidak ada tema baru

#55

Setahun lalu ada ide bikin template modular.
User tinggal memilih komponen yang sudah jadi seperti header, footer, post info dll sesuai selera.
Tugasku hanya menggabungkan komponen itu jadi satu tema.
Misalkan ada komponen yg tidak suka, tinggal pesan komponen baru.
Tidak perlu pesan satu tema.
Baru ide, entah kapan baru tercapai.

#60

ini yang saya tau. jika ada yang lain bisa ditambahkan

Untuk lazyload
+ harus menambahkan width dan height pada gambar agar berfungsi.
+ masih belum bisa di luar post (data:post.featuredImage atau sejenisnya).

Untuk WebP image
+ hanya berlaku dalam artikel.
+ tidak support resize Image
+ hanya support untuk gambar dari server blogger saja.

#62

Aku pernah nyoba, tapi gk berfungsi karena penerapan yang salah: <img src="img_url.webp" loading="lazy"/> Ini yang benar: <img src="img_url.webp" loading="lazy" width="300" height="300"/> Kalau di blogger tambahkan .thumbHeight atau .thumbWidth Contoh avatar komentar custom: <img class='user_avatar' expr:alt='data:cb.level.author' expr:height='data:cb.level.authorPhoto.thumbHeight' expr:src='resizeImage(data:cb.level.authorAvatarSrc, 140, &quot;1:1&quot;)' expr:title='data:cb.level.author' expr:width='data:cb.level.authorPhoto.thumbWidth' loading='lazy'/> Sumber: Kode Data Blogger

#71

bang saya mau tanya arti dari code ini apa itu saya pasang web shortlink di blogger
<include expiration='7d' path='*.css'/>
<include expiration='7d' path='*.js'/>
<include expiration='3d' path='*.gif'/>
<include expiration='3d' path='*.jpeg'/>
<include expiration='3d' path='*.jpg'/>
<include expiration='3d' path='*.png'/>

#72

Itu namanya expiration header untuk menyimpan cache aset tema.
Fungsinya untuk mempercepat loading. 7d = kadaluarsa dalam 7 hari
3d = kadaluarsa dalam 3 hari
Menurut pakar blogger, pengaturan caching dilakukan di sisi server, artinya tidak berguna unuk blogger.
Silahkan dipasang, tidak akan ada bahaya apapun.
Baru2 ini aku berexperiment dengan turbolink untuk mempercepat loading, kalau mau coba silahkan paste di atas </head>: <script src='https://cdn.jsdelivr.net/npm/turbolinks@5.2.0/dist/turbolinks.min.js'/>

#81

Min, ada source auto slider yang simple gak yah? aku nyoba balikin auto slider ZMv5 terdahulu malah gak work, auto slider di ZMv5 baru tombol kiri kanannya kurang rapi menurutku.

#83

Hello, I just want to ask something. Has anyone here experienced similar to this? I'm using Ko-fi to sell digital goods, not physical goods. What if someone sends you money on PayPal and says that the item needs to be shipped to their address? Also, this user is unverified on PayPal. Is this a scam, right? Is this person trying to get my information through PayPal and hack it?

#93

I tried putting the manhwa in place of the label, and this does not change, but it almost worked because I noticed that it displays the latest posts on the site, and I changed the date of one of the manhwa so that it became the last thing that was published, and in fact the manhwa appeared, but it was also followed by the chapters that appeared (you can see that on the site if you can), and also I don't know how to send pictures

#94

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtqY-mPnGEUvBeXrNFh45kDuKXX1coYblpSdTphr19zBD8k-jVSzLAfGP-zjxVAAlNwRfctmasPWVEDX76twoMkXCAQPKpb0qDg45V1MzrtPACgRw1hlB89MXrpQFL7YTFKR3xScrV73_l4-u9CL-QttW6PE9DL-yMNDD7fTF4t-b7Y-d3uIEmpoHu0tyc/s1600/Screenshot%202024-03-24%20035304.png

#96

I can't believe it, I swear I tried it before and it didn't work. I think you have the blessing in your hand. I have a question. I am thinking of showing only the manhwas that I want, so I thought of giving them a new label that I will invent. If I put it there in a slide, will it work or not? and Thank you for giving me your time. Thank you very much.

#104

Maybe you should find another developer to work on this project. I'm very sorry for taking a lot of your time.
I will keep working on it until it's finished, but I don't have a timeline for when it's going to be completed.

This project has been neglected for a few months.
One of the problems I encountered was when trying to create a page without reloading.
It loaded faster, but the JavaScript was not working.
I finally managed to get around this issue with the help of a friend.

#108

Perlu beberapa menit, jam, bahkan berhari-hari baru berubah.
Banyak jawaban orang, tapi belum ada yg benar2 pasti.

Makanya aku nyerah pakai CSS cdn.
Padahal kalau berhasil, kita bisa deploy update lebih mudah.

Berikut sumber yg bisa km baca dan coba diterapkan solusinya: https://github.com/orgs/community/discussions/19713
https://stackoverflow.com/questions/24851824/how-long-does-it-take-for-github-page-to-show-changes-after-changing-index-html
https://github.com/jsdelivr/jsdelivr/issues/18271
Kalau berhasil, share triknya, aku mau belajar.

#109

setelah update commit, coba refresh page repo nya, kalau udah langsung masuk ke code yang udah di update tadi (tunggu beberapa detik lalu refresh page yang ada codenya tadi, maka akan otomatis terupdate kak).

contoh:
akunkamu/namarepo/codekamu

nah setelah update codekamu, langsung ke akunkamu/namarepo dan refresh, lalu buka akunkamu/namarepo/codekamu dan tunggu baru beberapa detik lalu refesh kak.

jangan lupa juga buat periksa log commitnya kak, biar tau code terbaru udah di push atau masih proses.

Menampilkan semua commit:
$ git log

Menampilkan perubahan file tertentu:
$ git log -p /path/to/file_or_directory


Menampilkan Statistik Singkat untuk Setiap Commit:
$ git log --stat


paling akhir, kalau masih ga berubah dalam beberapa jam, bersihkan cache peramban aja, semoga bisa dan membantu hehe ^^

#118

Semua cara itu gak berhasil, cuman bisa nunggu selama 10 hari baru bisa berubah.
Jadi aku pakai metode kasar seperti merubah nama Path

Contohnya

ListAnime v 1-0
Jadi ListAnime v 1-1
Lalu mengambil linknya dan mengconvertnya jadi cdn terus ubah link cdn lama dibloggernya cukup ubah angka 0 jadi 1.
Ini bakal bikin repot kalau user gak ngerti cara edit linknya untuk dapat update versi terbaru.
Tapi untukku ini cukup enak sih buat update fitur css tema utama.

1801 – 1920 of 1920

Forum rules
You can use English or Indonesian


image quote pre code