Comments |
Re: Advertising Mod
|
Hi,
in Icy Phoenix Sponsor details are "hardcoded" in template, it shouldn't be difficult to make the same in phpBB 3... just create a new condition in the template to insert a new row after first post and duplicate poster details inserting what you like.
The file to customize is viewtopic_body.html, if you need further help, just ask... I will try in my free time.
|
Mighty Gorgon [ Thu 12 Jun, 2008 11:19 ]
|
|
Re: Advertising Mod
|
could you copy/paste here the code? and where after to add.
Thanks in advance and funny smileys you got here
|
dutchwii [ Thu 12 Jun, 2008 11:59 ]
|
|
Re: Advertising Mod
|
The mod by Highway of Life is a very simple one but is written for Prosilver and SubSilver2 naturally.
The code for Subsilver2 is as follows and needs the classes updated to match that of MG Autumn:
This code is from the page titled ad_banner.html and the download site is http://www.phpbb.com/community/view...3&hilit=Adsense
- <!-- IF not S_HIDE_ADS -->
- <table class="tablebg" width="100%" cellspacing="1">
- <tr class="row2">
-
- <td align="center" valign="middle">
- <b class="postauthor" style="color:#1845ad;">G<span style="color:#ad1400;">o</span><span style="color:#c69e00;">o</span>g<span style="color:#31b639;">l</span><span style="color:#ad1400;">e</span></b>
- </td>
- <td width="100%" height="25">
- <table width="100%" cellspacing="0">
- <tr>
- <td class="gensmall" width="100%"> </td>
- </tr>
- </table>
- </td>
- </tr>
-
- <tr class="row1">
-
- <td valign="top" class="profile">
- <table cellspacing="4" align="center" width="150">
- <tr>
- <td align="center"><img src="{T_THEME_PATH}/images/google.jpg" alt="google adsense" /></td>
- </tr>
- </table>
-
- </td>
- <td valign="top">
- <table width="100%" cellspacing="5">
- <tr>
- <td>
-
- <div class="postbody"><script type="text/javascript"><!--
- google_ad_client = "pub-9190636154929816"; // enter your google ad publication ID here
- google_alternate_ad_url = ""; // enter your alternate ad URL (if any)
- google_ad_width = 728;
- google_ad_height = 90;
- google_ad_format = "728x90_as";
- google_ad_type = "text_image";
- google_ad_channel = "2898531414"; // enter your ad channel (if any) here
- google_color_border = "A9B8C2";
- google_color_bg = "ECECEC";
- google_color_link = "105289";
- google_color_text = "333333";
- google_color_url = "DC2A4D";
- //-->
- </script>
- <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
- </script></div>
-
- <table width="100%" cellspacing="0">
- <tr valign="middle">
- <td class="gensmall" align="{S_CONTENT_FLOW_END}">
- <a href="#">{INFO_IMG}</a>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-
- <tr>
- <td class="blue" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
- </tr>
- </table>
- <!-- ENDIF -->
It would be appreciated if the classes could be edited to reflect MG Autumn style thanks.
|
Methusala [ Sat 14 Jun, 2008 02:45 ]
|
|
Re: Advertising Mod
|
Well i am not gona use adsense from google, but probably a other ad service
|
dutchwii [ Sat 14 Jun, 2008 09:05 ]
|
|
Re: Advertising Mod
|
You can use this mod with any ad service simply by replacing the google info in it
|
Methusala [ Sat 14 Jun, 2008 20:47 ]
|
|
Re: Advertising Mod
|
but home to make it look like if its posted by a member
how add "username" usergroup etc
|
dutchwii [ Sat 14 Jun, 2008 21:28 ]
|
|
Re: Advertising Mod
|
I have now got this advertisement code worked out to be used in MG Autumn style for phpBB3.
You need to edit the Google details to your own of course and as well as that you can change the details to run banner ads if you want to as it is not necessarily made just for Google ads.
Open viewtopic_body.html
Find:
Before add:
<!-- IF postrow.S_FIRST_ROW == 2 -->
<tr class="row2">
<td align="center" valign="top">
<b class="postauthor" style="color:#1845ad;">G<span style="color:#ad1400;">o</span><span style="color:#c69e00;">o</span>g<span style="color:#31b639;">l</span><span style="color:#ad1400;">e</span></b><br /><br />
<img src="{T_THEME_PATH}/images/google.jpg" alt="google adsense" />
</td>
<td width="100%" height="25">
<table width="100%" cellspacing="0">
<tr>
<td class="gensmall" width="100%"> </td>
</tr>
</td>
</tr>
<tr>
<td valign="top">
<table width="100%" cellspacing="5">
<tr>
<td>
<div class="postbody">
<script type="text/javascript">
<!--
google_ad_client = "pub-9190636154929816";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
//Googleads, 728x90
google_ad_channel = "0814071977";
google_color_border = "8FBC8F";
google_color_bg = "E8E8E8";
google_color_link = "E7E7E7";
google_color_text = "000000";
google_color_url = "0080000";
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<table width="100%" cellspacing="0">
<tr valign="middle">
<td class="gensmall" align="{S_CONTENT_FLOW_END}">
<a href="#">{INFO_IMG}</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<tr><td class="spacer" colspan="2"><img src="{T_THEME_PATH}/images/spacer.gif" width="1" height="4" alt="" /></td></tr>
<!-- ENDIF -->
Save this image and upload it to Styles > Template > Theme > Images
|
Methusala [ Sat 14 Jun, 2008 23:03 ]
|
|
Re: Advertising Mod
|
Thanks for sharing Methusala, I really appreciate.
|
Mighty Gorgon [ Tue 24 Jun, 2008 12:32 ]
|
|
Re: Advertising Mod
|
Would that code work with Black Pearl?
|
tbird412 [ Wed 06 May, 2009 17:30 ]
|
|
Re: Advertising Mod
|
Would that code work with Black Pearl?
There is no reason why not if the code is not exact look for similar code... without look at Black Pearl I cannot tell you exactly.. but as most themes are quite similar mostly... there should be no problem
|
DWho [ Wed 06 May, 2009 20:29 ]
|
|
Re: Advertising Mod
|
Methusala wrote: [View Post] I have now got this advertisement code worked out to be used in MG Autumn style for phpBB3.
You need to edit the Google details to your own of course and as well as that you can change the details to run banner ads if you want to as it is not necessarily made just for Google ads.
Open viewtopic_body.html
Find:
Before add:
<!-- IF postrow.S_FIRST_ROW == 2 -->
<tr class="row2">
<td align="center" valign="top">
<b class="postauthor" style="color:#1845ad;">G<span style="color:#ad1400;">o</span><span style="color:#c69e00;">o</span>g<span style="color:#31b639;">l</span><span style="color:#ad1400;">e</span></b><br /><br />
<img src="{T_THEME_PATH}/images/google.jpg" alt="google adsense" />
</td>
<td width="100%" height="25">
<table width="100%" cellspacing="0">
<tr>
<td class="gensmall" width="100%"> </td>
</tr>
</td>
</tr>
<tr>
<td valign="top">
<table width="100%" cellspacing="5">
<tr>
<td>
<div class="postbody">
<script type="text/javascript">
<!--
google_ad_client = "pub-9190636154929816";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
//Googleads, 728x90
google_ad_channel = "0814071977";
google_color_border = "8FBC8F";
google_color_bg = "E8E8E8";
google_color_link = "E7E7E7";
google_color_text = "000000";
google_color_url = "0080000";
//-->
</script>
<script type="text/javascript"
src="h**p://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<table width="100%" cellspacing="0">
<tr valign="middle">
<td class="gensmall" align="{S_CONTENT_FLOW_END}">
<a href="#">{INFO_IMG}</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<tr><td class="spacer" colspan="2"><img src="{T_THEME_PATH}/images/spacer.gif" width="1" height="4" alt="" /></td></tr>
<!-- ENDIF -->
Save this image and upload it to Styles > Template > Theme > Images
Thank you Methusala,
but with this code i have adsense like in the picture,
please check picture. Maybe change some lines to get ads on right, after "Google" picture, not below?
I'm begginer, so...
Description: |
|
Filesize: |
108.51 KB |
Viewed: |
610 Time(s) |
|
|
Franc [ Wed 27 May, 2009 17:20 ]
|
|
Re: Advertising Mod
|
The modification proposed by Methusala is for my set of templates... for what I can see in the picture you posted you are not using any of my templates.
Maybe you should ask the style author or trying to use the code for proSilver to check if it works (and it will if the style you are using is based on proSilver tpl files).
|
Mighty Gorgon [ Sun 31 May, 2009 18:53 ]
|
|
Re: Advertising Mod
|
I recently have installed Phpbb 3.0.5 with seo mod. Can i use this advertising mod with phpbb 3.0.5?
Methusala wrote: [View Post] I have now got this advertisement code worked out to be used in MG Autumn style for phpBB3.
You need to edit the Google details to your own of course and as well as that you can change the details to run banner ads if you want to as it is not necessarily made just for Google ads.
Open viewtopic_body.html
Find:
Before add:
<!-- IF postrow.S_FIRST_ROW == 2 -->
<tr class="row2">
<td align="center" valign="top">
<b class="postauthor" style="color:#1845ad;">G<span style="color:#ad1400;">o</span><span style="color:#c69e00;">o</span>g<span style="color:#31b639;">l</span><span style="color:#ad1400;">e</span></b><br /><br />
<img src="{T_THEME_PATH}/images/google.jpg" alt="google adsense" />
</td>
<td width="100%" height="25">
<table width="100%" cellspacing="0">
<tr>
<td class="gensmall" width="100%"> </td>
</tr>
</td>
</tr>
<tr>
<td valign="top">
<table width="100%" cellspacing="5">
<tr>
<td>
<div class="postbody">
<script type="text/javascript">
<!--
google_ad_client = "pub-9190636154929816";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
//Googleads, 728x90
google_ad_channel = "0814071977";
google_color_border = "8FBC8F";
google_color_bg = "E8E8E8";
google_color_link = "E7E7E7";
google_color_text = "000000";
google_color_url = "0080000";
//-->
</script>
<script type="text/javascript"
src="h**p://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<table width="100%" cellspacing="0">
<tr valign="middle">
<td class="gensmall" align="{S_CONTENT_FLOW_END}">
<a href="#">{INFO_IMG}</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<tr><td class="spacer" colspan="2"><img src="{T_THEME_PATH}/images/spacer.gif" width="1" height="4" alt="" /></td></tr>
<!-- ENDIF -->
Save this image and upload it to Styles > Template > Theme > Images
|
aminwasu [ Thu 11 Jun, 2009 10:21 ]
|
|
Re: Advertising Mod
|
This modification is based on my templates set... if you are using any of my templates you should be able to get it work correctly.
|
Mighty Gorgon [ Fri 12 Jun, 2009 08:29 ]
|
|
|