Move Blogger Inline Ads Between Posts to Inside Within Post Position Move Blogger вхідні об'яви між посадами в рамках Всередині Поштові Позиція

The new Blogger widget based template that built on XML specification has a feature to Новий віджет Blogger шаблон, заснований на специфікаціях вбудований XML має спеціальну функцію, що дозволяє add Google AdSense ad unit inline between posts Додати Google AdSense рекламний блок, вбудований між посадами . . 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. Ці вхідні об'яви з'являються між 2 блогу на головній сторінці, архів і категорія або етикетки сторінок, або після утримання блогу, коли одна посада розглядається в індивідуальному порядку. However, the placement is kind of awkward and low performing in term of click through rate (CTR). Тим не менше, розміщення виду ніяково і неефективних в термін Рейтинг кліків (CTR).

A lot of bloggers have Багато блогери put Google AdSense ad code inside the post покласти оголошень Google AdSense код всередині поста or або wrap the ad unit around blog post оберніть навколо рекламного блоку в блозі by editing template's HTML to insert шляхом редагування шаблону HTML, щоб вставити modified ad code Зміна рекламного коду manually. вручну. Some users may feel uneasy on modifying the AdSense ad code as it may violates AdSense TOS. Деякі користувачі почувають себе ніяково, про внесення змін в коді об'яви AdSense, які він може порушують AdSense TOS. 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. Втім, є ще один обхідний шлях для реклами AdSense покласти в Blogger посад, з допомогою хитрості, щоб перемістити або дублікат вбудований вхідні об'яви між посад всередині блоку пост розділі.

  1. To use the trick to move around AdSense ad unit added by Ads Between Posts, Щоб використовувати трюк для переміщення одиниці реклами AdSense додав Оголошення між посадами, enable and configure inline ads in Blogger using this guide включити і налаштувати вхідні об'яви в Blogger, використовуючи це керівництво . . Note that you must login to your AdSense account from Blogger to establish access authentication. Зверніть увагу, що Ви повинні увійти, щоб ваш облікових записів AdSense, Blogger, щоб забезпечити доступ аутентифікації. If you don't have AdSense account yet, you can click on Sing Up button to register for one. Якщо ви не маєте облікового запису AdSense, Ви можете натиснути на Sing Up кнопку, щоб зареєструватися на одному.
  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. Для відображення цього оголошення в блозі також, натисніть на вкладку "Шаблон", а потім натисніть кнопку "Змінити HTML" суб-вкладки посилання, щоб відкрити Blogger шаблон коду HTML редактор для редагування вмісту шаблону.

    Blogger Змінити 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. Backup копію шаблону, натиснувши на посилання Завантажити весь шаблон, у разі його необхідності завантажувати на сервер Blogger, щоб відновити шаблон у разі помилки або корупції.

    Blogger Завантажити весь шаблон

  4. Click to tick the Expand Widget Templates checkbox. Натисніть на галочку Розширити шаблони елемента керування прапорець.

    Blogger Розширити шаблони елемента керування

  5. Find the line with the following text: Знайдіть рядок з текстом наступного змісту:

    <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: І вставити наступний фрагмент тексту раніше (за позицію оголошення до змісту) або після (за позицію оголошення після утримання) рядок вище:


    <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. Зверніть увагу, що максимум 3 AdSense за вміст (без блоку посилань тип) оголошення дозволені на кожній сторінці.

  6. If you want the AdSense ads inside blog post to Якщо ви хочете реклами AdSense всередині блогу на appear only when individual blog post is visited з'являються тільки тоді, коли відвідав окремі блогу , and not on homepage, category or archive pages, wrap the following lines to before and after code added above , А не на сторінку, категорії або на сторінках архіву, обернути наступних строк до і після коду додати вище

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

    The whole block added will look like below: Цілий блок додав буде виглядати нижче:


    <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. Після включення Показувати оголошення між посадами в кроці 1, ви помітите, що AdSense оголошення будуть показані між посадами на всіх численних сторінці блога, а також після статті по окремих одна думка посаду. 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: Якщо ви не хочете отримувати ці оголошення, тобто перейти вбудованим вхідні об'яви в межах посади, знайдіть наступний блок тексту, який працює так само з тим, ми додали вище:


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

    And delete these code from 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. Зверніть увагу, що ми тільки що додали і той же блок коду з сходинку вище, щоб не видалити знову додали код, але існуючий код в шаблон.

    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: Якщо ви все ще хочете одиниці AdSense оголошення між посадами, коли відвідувачі переглянути свій блог початок, етикетки або категорію сторінок або сторінок архіву, загорніть вище код на верхній і нижній наступні 2 рядки:

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

    so that it looks like the following: так що це виглядає наступним чином:


    <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. Зверніть увагу, що ці два напрямки повинні бути додані до існуючих блок коду в шаблон, а не блок, який ми додали в ногу вище.

  8. Click on SAVE TEMPLATE button to save the new hacked template. Натисніть на кнопку "Зберегти шаблон, щоб зберегти новий шаблон зламана. Now the ad should be appear inside blog post without actually modify ad code. Тепер оголошення має з'явитися всередині блогу без фактичного змінити код оголошення. You can also use the same hack theory above to Ви також можете використовувати той же рубати теорію вище place the ads on different location розміщувати рекламу на іншому місці . .

IMPORTANT : The page is machine translated and provided "as is" without warranty. ВАЖЛИВО: Сторінка машина переведена і надаються "як є" без гарантії. Machine translation may be difficult to understand. Машинний переклад може бути важким для розуміння. Please refer to Будь ласка, зверніться до original English article оригінальний англійська статтю whenever possible. коли це можливо.


10 Responses to “Move Blogger Inline Ads Between Posts to Inside Within Post Position” 10 Відповіді на "Move Blogger вхідні об'яви між посадами в рамках Всередині Поштові Позиція"

  1. Sebb Sebb
    September 18th, 2009 23:49 18 Вересня 2009 23:49
    10 10

    Thanks for this post, made my life easy. Дякуємо за цей пост, зробив моє життя легко.

  2. Subby Subby
    August 19th, 2009 22:51 19 серпня 2009 22:51
    9 9

    Hi, how can I display google ad after specific number of posts and the number of ads displayed after activating the blogger inline ads? Привіт, як я можу відображення об'яв Google після певної кількості повідомлень і кількість об'яв, що відображаються після активації оголошень Blogger Inline? Thanks in advance Спасибо заранее

  3. How to insert AdSense, Chitika or any other Javascript code into new Blogger template | WEBMASTER - SEO - TIPS - TOOLS - MARKETING Як вставити AdSense, Chitika або будь-який інший Javascript коду на новий Blogger Template | Веб-майстер - SEO - Поради - ІНСТРУМЕНТИ - МАРКЕТИНГ
    June 24th, 2009 15:57 24 червня 2009 15:57
    8 8

    [...] – Edit – Show Ads Between Posts). [...] - Змінити - Показати об'яви з однієї посади). After that you can move these ads position using this technique. Після цього ви можете перемістити ці оголошення позицію, використовуючи цю техніку. But sometimes it is not enough: for example you cannot specify channel, you cannot insert AdSense [...] Але іноді цього недостатньо: наприклад, ви не можете вказати канал, ви не можете вставити AdSense [...]

  4. Jane Джейн
    October 4th, 2008 10:42 4 жовтня 2008 10:42
    7 7

    Thanks so much for your guide. Большое спасибо за ваше керівництво. I have applied the technique. Я застосовував техніку.

    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: Мене цікавить, якщо ви в змозі надати допомогу з такого питання: у мене є попереджувальний знак, який з'являється в лівому нижньому куті, який говорить, що "зробити, але з помилками на сторінці" на моєму сайті: http://www.asiaworkingparent.com http://www.asiaworkingparent.com . . Would you be able to diagnose? Якщо б ви змогли діагностувати? not sure if it is related to adsense. Чи не впевнений, що він пов'язаний з AdSense.

  5. Yamato Ямато
    September 29th, 2008 00:39 29 Вересня 2008 00:39
    6 6

    thanks! спасибо!

  6. How to insert AdSense, Chitika or any other Javascript code into new Blogger template | adsensecool.com Як вставити AdSense, Chitika або будь-який інший Javascript коду на новий Blogger Template | adsensecool.com
    September 28th, 2008 01:41 28 Вересня 2008 01:41
    5 5

    [...] – Blog Posts – Edit – Show Ads Between Posts). [...] - Блог - Змінити - Показати об'яви з однієї посади). After that you can move these ads position using this technique. Після цього ви можете перемістити ці оголошення позицію, використовуючи цю техніку. But sometimes it is not enough: for example you cannot specify channel, you cannot insert AdSense [...] Але іноді цього недостатньо: наприклад, ви не можете вказати канал, ви не можете вставити AdSense [...]

  7. janaxx janaxx
    August 9th, 2008 03:27 9 серпня 2008 03:27
    4 4

    cant locate post body tag in my template.. нахиляє знайдіть теги тексті листа в шаблоні ..

  8. Where do I put my ad codes in the HTML box on Blogger? Де я поклав мою кодів оголошенням, в полі HTML на Blogger? - Bloggeries Blog Forum - Bloggeries Блог Форум
    June 13th, 2008 01:04 13 червня 2008 01:04
    3 3

    [...] expand widget and look for the codes where you wanted to put the codes.. [...] Розширити віджет і шукати коди, де ви хотіли поставити кодів .. <dataost.body/> Move Blogger Inline Ads Between Posts to Inside Within Post Position <dataost.body/> Move Blogger вхідні об'яви між посадами в рамках Всередині Поштові Позиція

  9. microsoftmic microsoftmic
    February 5th, 2008 12:03 5 лютого 2008 12:03
    2 2

    they had I didn't and saw and climb in a hollow more than came by themselves у них я не бачив і і залізти в порожніх більш ніж прийшли самі по собі

  10. spiderman05 spiderman05
    December 4th, 2007 02:58 4 грудня 2007 02:58
    1 1

    Very interesting post and a very clean way to modify the location of Adsense ads. Дуже цікавий пост і дуже чистим способом змінити місцезнаходження Adsense оголошень. I applied it to my blog and it works like a charm. Я застосував його в моєму блозі, і він працює як чарівність.

    Thanks. Спасибо.

Leave a Reply Написати відповідь

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> Ви можете використовувати ці теги: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <справі DateTime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Підписатися на коментарі функція була відключена. To receive notification of latest comments posted, subscribe to Щоб отримувати повідомлення про останні коментарях, підписатися My Digital Life Comments RSS feed Моя Цифрова життя Коментарі RSS Feed or або register to receive Увійдіть, щоб отримувати new comments in daily email digest. нові коментарі в щоденній електронній пошті.
Custom Search

New Articles Нові статті

Incoming Search Terms for the Article Вхідні терміни пошуку для статті

ad that serves between posts in blog оголошення, яке обслуговує між постами в блозі - -- adsense inline posts blogspot AdSense Inline BlogSpot посад - -- adsense inside post blogger "Inside AdSense Blogger Post - -- display ad blogger Blogger відображення оголошень - -- how to position the ads in blogger blogs Як позицію оголошень в Blogger блогах - -- i cant show ads between post Я нахиляє Показати об'яви між посадами - -- ads between posts, blogger Оголошення між посадами, Blogger - -- put ads between posts розмістити оголошення між посадами - -- blogger ads between posts Blogger реклами між посадами - -- placing ads on blogger розміщення оголошень на Blogger - -- step by step show ads between post for blogger Крок за кроком показувати оголошення між посадами для блогерів - -- delete ads between the post видалити оголошення між посадами - -- - -- ads in posts in blogger Оголошення посад в Blogger - -- ads after blog post оголошення після блогу - -- blogger ads between posts how to Blogger рекламу між постами, як - -- ads after posts blogger оголошення після повідомлень Blogger - -- how can show the inline ads between my post Як можна показати вхідні об'яви між свою посаду - -- insert adsense inline blogger contents Включити AdSense Inline змісту Blogger - -- my adsense ads appear after the box comment мої реклами AdSense після поле коментар - -- "inline ads" blogger "вхідні об'яви" Blogger - -- how to place ads after each blogger post Як розмістити рекламу після посту кожен блоггер - -- insert ads within post blogspot вставити оголошення на посаду BlogSpot - -- place ads in posts blogger розміщувати оголошення на посаді Blogger - -- adding adsense Додавання AdSense - -- blogger ads Blogger оголошень - -- google ads post into blogger new post Google Post оголошень в Blogger нову посаду - --