Move Blogger Inline Ads Between Posts to Inside Within Post Position Pindah Blogger Inline Ads Between Posts untuk Inside Di Posting Posisi

The new Blogger widget based template that built on XML specification has a feature to Blogger baru berbasis widget template yang dibangun pada spesifikasi XML memiliki fitur untuk add Google AdSense ad unit inline between posts menambahkan unit iklan Google AdSense inline antara posting . . These inline ads appear between 2 blog posts on homepage, archive and category or label pages, or after the blog content when the single post is viewed individually. Ini iklan inline muncul antara 2 posting blog pada homepage, arsip dan halaman kategori atau label, atau setelah konten blog ketika satu posting dilihat secara individual. However, the placement is kind of awkward and low performing in term of click through rate (CTR). Namun, penempatan adalah jenis canggung dan rendah kinerjanya dalam hal melalui klik per tayang (RKPT).

A lot of bloggers have Banyak blogger ada put Google AdSense ad code inside the post menempatkan kode iklan Google AdSense dalam pos or atau wrap the ad unit around blog post menyelimuti sekitar unit iklan blog post by editing template's HTML to insert dengan mengedit template HTML untuk memasukkan modified ad code dimodifikasi kode iklan manually. secara manual. Some users may feel uneasy on modifying the AdSense ad code as it may violates AdSense TOS. Beberapa pengguna mungkin merasa gelisah pada memodifikasi kode iklan AdSense karena dapat melanggar TOS AdSense. Anyway, there is another workaround to put AdSense ads in Blogger posts, by using trick to move or duplicate built-in inline ads between posts block to inside the post section. Anyway, ada Workaround lain untuk menempatkan iklan AdSense di Blogger posting, dengan menggunakan trik untuk memindahkan atau menggandakan built-in iklan inline antara posting ke blok di dalam pos bagian.

  1. To use the trick to move around AdSense ad unit added by Ads Between Posts, Untuk menggunakan trik untuk bergerak di sekitar unit iklan AdSense ditambah Ads Between Posts, enable and configure inline ads in Blogger using this guide mengaktifkan dan mengkonfigurasi iklan inline di Blogger menggunakan panduan ini . . Note that you must login to your AdSense account from Blogger to establish access authentication. Perlu diketahui bahwa Anda harus login ke account AdSense dari Blogger untuk membangun akses otentikasi. If you don't have AdSense account yet, you can click on Sing Up button to register for one. Jika Anda tidak memiliki account AdSense belum, Anda dapat mengklik tombol Sing Up untuk mendaftar untuk satu.
  2. To display this ad within blog post also, click on Template tab, and then click on Edit HTML sub-tab link to open Blogger HTML code template editor to edit the contents of your template. Untuk menampilkan iklan ini di posting blog juga, klik tab Template, kemudian klik Edit HTML sub-tab link ke Blogger buka editor HTML code template untuk mengedit isi dari template Anda.

    Blogger Edit HTML

  3. Backup a copy of your template by click on Download Full Template link, in case it's is needed be uploaded to Blogger server to recover the template in the event of mistake or corruption. Salinan cadangan dari template Anda oleh klik pada link Download Template Lengkap, dalam kasus ini diperlukan akan diupload ke Blogger server untuk memulihkan template dalam hal kesalahan atau korupsi.

    Blogger Download Template Lengkap

  4. Click to tick the Expand Widget Templates checkbox. Klik untuk mendetik yang centang Expand Template Widget.

    Blogger Expand Template Widget

  5. Find the line with the following text: Cari baris dengan teks berikut:

    <data:post.body/>

    And paste the following block of text before (for ad position before content) or after (for ad position after content) the line above: Dan paste berikut blok teks sebelum (untuk posisi iklan sebelum konten) atau setelah (untuk posisi iklan setelah konten) baris di atas:


    <b:if cond='data:post.includeAd'>
    <data:adEnd/>
    <data:adCode/>
    <data:adStart/>
    </b:if>

    Note that maximum of 3 AdSense for Contents (non Link Unit type) ads are allowed on each page. Perlu diketahui bahwa maksimal 3 AdSense untuk Konten (non Unit Link jenis) iklan yang diizinkan pada setiap halaman.

  6. If you want the AdSense ads inside blog post to Jika Anda ingin agar iklan AdSense ke dalam posting blog appear only when individual blog post is visited hanya muncul ketika individu posting blog dikunjungi , and not on homepage, category or archive pages, wrap the following lines to before and after code added above Dan bukan pada homepage, halaman kategori atau arsip, wrap baris berikut ke kode sebelum dan sesudah ditambahkan di atas

    <b:if cond='data:blog.pageType == "item"'>
    </b:if>

    The whole block added will look like below: Seluruh blok ditambahkan akan terlihat seperti berikut:


    <b:if cond='data:blog.pageType == "item"'>
    <b:if cond='data:post.includeAd'>
    <data:adEnd/>
    <data:adCode/>
    <data:adStart/>
    </b:if>
    </b:if>

  7. After enabling Show Ads Between Posts in step 1, you will notice that AdSense ads will be shown between posts on all multiple blog posts page, and also after the article on individual single post view. Setelah mengaktifkan Tampilkan Iklan di Antara Posting langkah 1, anda akan melihat bahwa iklan AdSense akan ditampilkan di antara beberapa posting di semua halaman posting blog, dan juga setelah satu artikel pada setiap pos lihat. If you don't want these ads to appear, ie to move built-in inline ads to within post, the locate the following block of text which is same with the one we added above: Jika Anda tidak ingin iklan ini muncul, yakni untuk memindahkan built-in iklan inline ke dalam pos, yang cari berikut blok teks yang sama dengan yang kami ditambahkan diatas:


    <b:if cond='data:post.includeAd'>
    <data:adEnd/>
    <data:adCode/>
    <data:adStart/>
    </b:if>

    And delete these code from template. Dan menghapus kode dari template. Note that we have just added a same block of code from step above, so do not remove the newly added code, but the existing code in the template. Perlu diketahui bahwa kami baru saja menambahkan sama blok kode dari langkah di atas, sehingga tidak menghapus kode baru ditambahkan, tetapi kode yang sudah ada dalam template.

    If you still want the AdSense ad unit to appear between posts when visitors view your blog homepage, label or category pages or archive pages, wrap the code above on top and bottom with the following 2 lines: Jika Anda masih ingin agar iklan AdSense unit untuk muncul antara pengunjung ketika melihat posting blog Anda homepage, label atau kategori halaman arsip atau halaman, wrap di atas kode di atas dan bawah dengan 2 baris berikut:

    <b:if cond='data:blog.pageType != "item"'>
    </b:if>

    so that it looks like the following: sehingga terlihat seperti berikut ini:


    <b:if cond='data:blog.pageType != "item"'>
    <b:if cond='data:post.includeAd'>
    <data:adEnd/>
    <data:adCode/>
    <data:adStart/>
    </b:if>
    </b:if>

    Note that the two lines should be added to the existing block of code in template, not the block which we added in step above. Dicatat bahwa dua baris harus ditambahkan ke dalam blok kode yang ada dalam template, bukan blok yang kita ditambahkan pada langkah di atas.

  8. Click on SAVE TEMPLATE button to save the new hacked template. Klik tombol SAVE TEMPLATE untuk menyimpan template baru hacked. Now the ad should be appear inside blog post without actually modify ad code. Sekarang iklan harus muncul di dalam posting blog sebenarnya tanpa memodifikasi kode iklan. You can also use the same hack theory above to Anda juga dapat menggunakan hack sama teori di atas untuk place the ads on different location menempatkan iklan di lokasi yang berbeda . .

IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman yang diterjemahkan mesin dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Mesin terjemahan mungkin sulit dimengerti. Please refer to Silakan merujuk ke original English article artikel asli Inggris whenever possible. bila memungkinkan.


7 Responses to “Move Blogger Inline Ads Between Posts to Inside Within Post Position” 7 Responses to "Pindah Blogger Inline Ads Between Posts untuk Inside Di Posting Posisi"

  1. Jane Jane
    October 4th, 2008 10:42 4 Okt 2008 10:42
    7 7

    Thanks so much for your guide. Thanks so much untuk Anda. I have applied the technique. Saya telah menerapkan teknik.

    I am wondering if you are able to assist on the following issue: I have a warning sign that appears at the left bottom corner that says that 'Done, but with error on page' on my website: I am wondering jika anda dapat membantu pada masalah sebagai berikut: Saya memiliki sebuah tanda peringatan yang muncul di pojok kiri bawah yang mengatakan bahwa 'Selesai, namun dengan kesalahan pada halaman' di situs Web saya: http://www.asiaworkingparent.com http://www.asiaworkingparent.com . . Would you be able to diagnose? Anda akan dapat mendiagnosa? not sure if it is related to adsense. tidak yakin jika berkaitan dengan adsense.

  2. Yamato Yamato
    September 29th, 2008 00:39 September 29, 2008 00:39
    6 6

    thanks! terima kasih!

  3. How to insert AdSense, Chitika or any other Javascript code into new Blogger template | adsensecool.com Bagaimana cara memasukkan AdSense, Chitika Javascript atau kode ke template Blogger baru | adsensecool.com
    September 28th, 2008 01:41 September 28, 2008 01:41
    5 5

    [...] – Blog Posts – Edit – Show Ads Between Posts). [...] - Blog Posts - Edit - Tampilkan Iklan Antara Posts). After that you can move these ads position using this technique. Setelah itu Anda dapat memindahkan posisi iklan tersebut menggunakan teknik ini. But sometimes it is not enough: for example you cannot specify channel, you cannot insert AdSense [...] Tetapi terkadang itu tidak cukup: misalnya Anda tidak dapat menentukan saluran, Anda tidak dapat menyisipkan AdSense [...]

  4. janaxx janaxx
    August 9th, 2008 03:27 9 Agustus, 2008 03:27
    4 4

    cant locate post body tag in my template.. cant menemukan posting tag badan dalam template ..

  5. Where do I put my ad codes in the HTML box on Blogger? Di mana saya menempatkan kode iklan dalam kotak HTML di Blogger? - Bloggeries Blog Forum - Bloggeries Blog Forum
    June 13th, 2008 01:04 13 Jun 2008 01:04
    3 3

    [...] expand widget and look for the codes where you wanted to put the codes.. [...] Widget memperluas dan mencari kode di mana anda ingin menempatkan kode .. <dataost.body/> Move Blogger Inline Ads Between Posts to Inside Within Post Position Pindah <dataost.body/> Blogger Inline Ads Between Posts untuk Inside Di Posting Posisi

  6. microsoftmic microsoftmic
    February 5th, 2008 12:03 5 Feb 2008 12:03
    2 2

    they had I didn't and saw and climb in a hollow more than came by themselves mereka dan Aku tidak pernah melihat dan naik di lebih dari melubang datang dengan sendirinya

  7. spiderman05 spiderman05
    December 4th, 2007 02:58 4 Des 2007 02:58
    1 1

    Very interesting post and a very clean way to modify the location of Adsense ads. Sangat menarik dan posting yang sangat bersih cara untuk mengubah lokasi iklan Adsense. I applied it to my blog and it works like a charm. Aku diterapkan ke blog saya dan dia bekerja seperti pesona.

    Thanks. Terima kasih.

Leave a Reply Meninggalkan Balas

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Anda dapat menggunakan tag ini: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Berlangganan ke fitur komentar telah dinonaktifkan. To receive notification of latest comments posted, subscribe to Untuk menerima pemberitahuan komentar diposting terbaru, berlangganan My Digital Life Comments RSS feed Saya Digital Life Komentar RSS feed or atau register to receive mendaftar untuk menerima new comments in daily email digest. komentar baru di email harian digest.
Custom Search

New Articles Artikel Baru

Incoming Search Terms for the Article Cari Syarat masuk untuk Artikel

how to put ads inside a blogger post cara menempatkan iklan di dalam blogger pos - -- hes just not that into you prevod hes yang tidak hanya menjadi Anda prevod - -- - -- adsense ad, move position iklan adsense, memindahkan posisi - -- - -- blogger ads in posts blogger iklan dalam posting - -- how to place ads in between posts cara untuk menempatkan iklan di antara posting - -- inline ads between post iklan inline dikirim antara - -- ads after posts blogger iklan setelah posting blogger - -- hes just not that into yuo prevod hes yang tidak hanya menjadi Anda prevod - -- move gadgets inline blogger memindahkan gadget inline blogger - -- data:post.body data: post.body - -- titlovi hes just not that into you titlovi hes yang tidak hanya menjadi Anda - -- blogger adStart blogger adStart - -- other ads in between posts blogger iklan lain di antara posting blogger - -- data adstart data adstart - -- blogger blogger - -- inline ad code between body inline kode iklan antara tubuh - -- link unit between blog posts unit link antara posting blog - -- Expand widget template nederlands Expand widget template Nederlands - -- "between posts" "di antara posting" - -- ads inside blogger post iklan di dalam blogger pos - -- ads in between posts blogger iklan di antara posting blogger - -- how add ads beatween post cara menambahkan iklan beatween Posting - -- - -- how to get adsin between posts? cara mendapatkan adsin antara posting? blogger blogger - -- ads between posts blogger iklan antara posting blogger - -- how to move the the ads between post to within post blogger cara untuk memindahkan iklan di antara posting ke dalam posting blog - --