phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Google adsense in PHPBB
Goto page Previous  1, 2, 3
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB Forum
::  
Author Message
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Mon Feb 04, 2008 4:32 pm    Post subject: phpbb3

will this work with phpbb3 Rolling Eyes if not plz provide it for phpbb3
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 13354

Google adsense in PHPBBPosted: Wed Feb 06, 2008 9:20 pm    Post subject: Re: Google adsense in PHPBB

tobi made a pretty decent mod over at phpbb.com, should not be hard to find with the author name Wink

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
the.helper



Joined: 24 Aug 2007
Posts: 2

Google adsense in PHPBBPosted: Wed May 14, 2008 8:39 am    Post subject: Re: Google adsense in PHPBB

thanks very much 4 this nice mod Smile
Back to top
Professional
PR1
PR1


Joined: 07 Apr 2008
Posts: 119
Location: 1/2 of the World

Google adsense in PHPBBPosted: Wed May 14, 2008 4:10 pm    Post subject: Re: Google adsense in PHPBB

is there this google adcence for phpbb 3.0.1?

_________________
انجمن تخصصی موبایل برای ایرانیان
http://www.mobile4persian.com
برنامه موبایل - بازی موبایل - تم موبایل - اخبار موبایل - ترفند موبایل - s60 -s60 3rd- s80-s90-java-pocket pc-palm-ppc-UIQ3-UIQ
Back to top
Visit poster's website
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Tue May 20, 2008 4:35 pm    Post subject: ads before 1st post

can anybody please tell how to ad google adsense ads BEFORE 1st post ,
plz help
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 795

Google adsense in PHPBBPosted: Tue May 20, 2008 9:36 pm    Post subject: Re: ads before 1st post

Professional wrote:
is there this google adcence for phpbb 3.0.1?

I googled for phpbb ads mod and found a couple promising ones:

http://www.phpbb.com/community/viewtopic.php?f=70&t=552813
http://startrekguide.com/community/viewtopic.php?f=84&t=5501

And of course the trivial one:

http://www.phpbb.com/kb/article/advertisements-in-phpbb3/

drankur wrote:
can anybody please tell how to ad google adsense ads BEFORE 1st post ,
plz help

See http://www.phpbb.com/kb/article/advertisements-in-phpbb3/ and search for "Ads before or after the first post in a topic"

_________________
Dan Kehn
Back to top
Visit poster's website
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Wed May 21, 2008 3:53 am    Post subject: already

i have already looked there but it shows ads after any post(altough written there before first post) , that i don't want i only want to display BEFORE first post
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 795

Google adsense in PHPBBPosted: Wed May 21, 2008 4:06 am    Post subject: Re: Google adsense in PHPBB

drankur wrote:
i have already looked there but it shows ads after any post...

In that case, it sounds like you omitted this line in your code:

Code:
   <!-- IF postrow.S_FIRST_ROW -->


from the sample code shown here:

Code:
       <!-- IF postrow.S_FIRST_ROW -->
       <div class="post bg2">
          <div class="inner"><span class="corners-top"><span></span></span>

          <div class="postbody">
             <h3>{postrow.POST_SUBJECT}</h3>
             <p class="author"><strong>Sponsor</strong></p>

             <div class="content" style="text-align: center;">
                Insert your ad code here
             </div>
          </div>
         
          <dl class="postprofile" id="profile0000">
             <dt>
                <strong>Sponsor</strong>
             </dt>

             <dd>&nbsp;</dd>
          </dl>
         
          <div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
          <span class="corners-bottom"><span></span></span></div>
       </div>
       <hr class="divider" />
       <!-- ENDIF -->

_________________
Dan Kehn
Back to top
Visit poster's website
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Wed May 21, 2008 7:32 am    Post subject: haven't

thanks buddy , it worked , thanks a lot again Very Happy
Back to top
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Wed May 21, 2008 12:00 pm    Post subject: inside

can u plz tell how to put google ads INSIDE FIRST POST i have googled very hard but could't find it, i would be very thankful , plz help
Back to top
MathieuM.
phpBB SEO Team
phpBB SEO Team


Joined: 10 Feb 2008
Posts: 447
Location: Rhône-Alpes

Google adsense in PHPBBPosted: Wed May 21, 2008 12:35 pm    Post subject: Re: Google adsense in PHPBB

HB already gave the answer... Look at : http://www.phpbb.com/kb/article/advertisements-in-phpbb3/


phpBB.com wrote:

Ads before or after the first post in a topic

If you want ads either before or after the first post in a topic, open styles/prosilver/template/viewtopic_body.html

For ads before the first post, find the line below and add the sample code after this line.

Code:
<!-- BEGIN postrow -->


For ads after the first post, find the line below and add the sample code before this line.

Code:
<!-- END postrow -->


Here is the sample ad code:

Code:
   <!-- IF postrow.S_FIRST_ROW -->
   <div class="post bg2">
      <div class="inner"><span class="corners-top"><span></span></span>

      <div class="postbody">
         <h3>{postrow.POST_SUBJECT}</h3>
         <p class="author"><strong>Sponsor</strong></p>

         <div class="content" style="text-align: center;">
            Insert your ad code here
         </div>
      </div>
     
      <dl class="postprofile" id="profile0000">
         <dt>
            <strong>Sponsor</strong>
         </dt>

         <dd>&nbsp;</dd>
      </dl>
     
      <div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
      <span class="corners-bottom"><span></span></span></div>
   </div>
   <hr class="divider" />
   <!-- ENDIF -->


Of course, replace Insert your ad code here with the ad code your provider gives you.



Mathieu.

_________________
[ Site phpBB SEO ] [ Téléchargements ] [ L'annuaire SEO ] [ Venez vous présenter ] [ Fonction Recherche ]
---------------------------
[ phpBB SEO Site ] [ Downloads ] [ SEO Directory ] [ Introduce yourself ] [ Search function ]
Back to top
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Wed May 21, 2008 12:38 pm    Post subject: no

no dear , its not the same , i am asking google adsense INSIDE the first post not before , i hope this will solve the confusion.
plz help
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 795

Google adsense in PHPBBPosted: Wed May 21, 2008 9:52 pm    Post subject: Re: Google adsense in PHPBB

Not sure why you would do that, but you could use the instructions above and add this after the post heading in the viewtopic.html template:

Code:
<!-- IF postrow.S_FIRST_ROW -->
<div>
...insert adsense code from google here...
</div>
<!-- ENDIF -->

It may not look as "natural" as the modification from phpBB's knowledge base.

_________________
Dan Kehn
Back to top
Visit poster's website
drankur



Joined: 04 Feb 2008
Posts: 16

Google adsense in PHPBBPosted: Tue May 27, 2008 5:06 pm    Post subject: no

its not working bro
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 795

Google adsense in PHPBBPosted: Tue May 27, 2008 11:25 pm    Post subject: Re: Google adsense in PHPBB

I assume you made a coding error. Please check your work again.

_________________
Dan Kehn
Back to top
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB Forum
Page 3 of 3 Goto page Previous  1, 2, 3

Navigation Similar Topics

Jump to: