Skip to main content
edited tags
Link
avpaderno
  • 98.1k
  • 15
  • 165
  • 284
edited body
Source Link

I'm customizing a theme and need to have a leaderboard on top of the page. Everything good - on all pages but not the home (front-page)... Any ideas what I did wrong?

I've added a region to the .info file

regions[topad] = Leaderboard header 

and printed that region to the page-.tpl.php like that:

 <?php if ($page ['topad']): ?> <div id="topad"> <?php print render($page['topad']); ?> </div> <!-- /#topad --> <?php endif; ?> 

I added a block with the leaderboard infos to the region and told it to show up on every page (also tried specific pages with "" - didn't work).

I'm happy for every hint.

Thank you!

Best

Chris

I'm customizing a theme and need to have a leaderboard on top of the page. Everything good - on all pages but not the home (front-page)... Any ideas what I did wrong?

I've added a region to the .info file

regions[topad] = Leaderboard header 

and printed that region to the page-tpl.php like that:

 <?php if ($page ['topad']): ?> <div id="topad"> <?php print render($page['topad']); ?> </div> <!-- /#topad --> <?php endif; ?> 

I added a block with the leaderboard infos to the region and told it to show up on every page (also tried specific pages with "" - didn't work).

I'm happy for every hint.

Thank you!

Best

Chris

I'm customizing a theme and need to have a leaderboard on top of the page. Everything good - on all pages but not the home (front-page)... Any ideas what I did wrong?

I've added a region to the .info file

regions[topad] = Leaderboard header 

and printed that region to the page.tpl.php like that:

 <?php if ($page ['topad']): ?> <div id="topad"> <?php print render($page['topad']); ?> </div> <!-- /#topad --> <?php endif; ?> 

I added a block with the leaderboard infos to the region and told it to show up on every page (also tried specific pages with "" - didn't work).

I'm happy for every hint.

Thank you!

Best

Chris

Source Link

Region won't show on front-page

I'm customizing a theme and need to have a leaderboard on top of the page. Everything good - on all pages but not the home (front-page)... Any ideas what I did wrong?

I've added a region to the .info file

regions[topad] = Leaderboard header 

and printed that region to the page-tpl.php like that:

 <?php if ($page ['topad']): ?> <div id="topad"> <?php print render($page['topad']); ?> </div> <!-- /#topad --> <?php endif; ?> 

I added a block with the leaderboard infos to the region and told it to show up on every page (also tried specific pages with "" - didn't work).

I'm happy for every hint.

Thank you!

Best

Chris