I have been on a few forums and I even used a program for PHPBB that would post a adsense ad like it was a user, like a user called "Advertisement" but instead of posting something there would a be a google ad. does anyone know where I could find this ad?
I'm not sure, but I think you are not supposed to use google ads as "content" on forums etc, if that what this add on will do... Google might cancel the account. Be careful An entire "post" made of adsense might not be a good idea, if that's what you meant. Sorry if you meant something else bye
I see some forums that have adsense signatures. If I go to the forum and input my own signature, then that's what people see. If I sign up but do not create a signature, then the forum displays an adsense block where the signature would be. If anyone comes across a mod for this, please point me to it.
I found a forum using what im talking about. See here http://support.phpbbnow.com/viewtopic.php?p=1507&sid=f83d7f8bca4b9d33001bc291057db768 at the bottom there is a post by a user called "Advertisment"" and there is a google ad
Good find. I've seen it in vBulletin, until now I hadn't seen it exactly like that in phpBB. Now all you have to do is find the mod/hack.
This isn't exactly what you're after (I haven't seen it in action) but if it doesn't do what you want then it may be doing a whole bunch of other things you might want to try... This MOD lets you easily ad advertisments within the posts of your forum. It is highly customizable: http://www.phpbb.com/phpBB/viewtopic.php?t=306680
o yea heres the mod too http://www.phpbb-seo.com/boards/phpbb-forum/discussions-vt141.html its a few post from the top also what is the google adsense support email so I can email them and ask them if im within the TOS?
Hello ! Here it is : # #-----[ OPEN ]------------------------------------------ # viewtopic.php # #-----[ FIND ]------------------------------------------ # $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2']; # #-----[ REPLACE WITH ]------------------------------------------ # $row_color = ( !($num % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($num % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $num ++; # #-----[ FIND ]------------------------------------------ # 'U_POST_ID' => $postrow[$i]['post_id']) ); # #-----[ AFTER, ADD ]------------------------------------------ # if($i == $ad_after) { $row_color = ( !($num % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($num % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $num ++; $mini_post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $postrow[$i]['post_id']) . '#ad'; $template->assign_block_vars('postrow', array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'POST_DATE' => $post_date, 'POST_SUBJECT' => 'Advertisement', 'MINI_POST_IMG' => $mini_post_img, 'POSTER_NAME' => 'Advertisement', 'POSTER_RANK' => 'Advertiser', 'MESSAGE' => '<div align="center">Ad code here</div>', 'L_MINI_POST_ALT' => $mini_post_alt, 'U_MINI_POST' => $mini_post_url, 'U_POST_ID' => 'ad') ); } # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ Code (markup): Olgi