I tried using this mod, but I could not get it to work. I double checked and retried every step.
What version phpBB does it work on? I am currently using 2.0.17 within PHPNuke. So this could possibly be my problem.
Moderator: Moderators
Upon1 wrote:I tried using this mod, but I could not get it to work. I double checked and retried every step.
What version phpBB does it work on? I am currently using 2.0.17 within PHPNuke. So this could possibly be my problem.




dcz wrote:For the second AdSense :
- Code: Select all
$add_switch = (( floor( $start / intval($board_config['posts_per_page']) ) + 1 ) < ceil( $total_replies / intval($board_config['posts_per_page'])) )? TRUE : FALSE;
Here, we check if there is another page in this topic and decide to output the AdSense.
We could for example only check that this topic page has more than n post in it before we add a second ad sense :
- Code: Select all
$add_switch = (count($total_posts) >= 10 )? TRUE : FALSE;
$add_switch = (count($total_posts) >= 3 )? TRUE : FALSE;
$add_switch = (count($total_posts) >= 3 )? TRUE : FALSE;$add_switch = (( floor( $start / intval($board_config['posts_per_page']) ) + 1 ) < ceil( $total_replies / intval($board_config['posts_per_page'])) )? TRUE : FALSE;$add_switch = (count($total_posts) >= 3 )? TRUE : FALSE;


Users browsing this forum: No registered users and 4 guests