Adsense not displaying in right sidebar on the main page…
-
Hi:
I just activated my adsense account and have entered in all the coding. They have just populated throughout my blog and I just don’t know what other issues could be affecting the adsense issue at this point.
I put two text box widgets in the right hand column with my adsense codes. I also activated the adsense code that activates in between the posts.
My adsense is working in between the posts but the ones on the right hand column are not working on the main page. The weird thing is the adsense boxes are working on all other pages. It’s just the main page that the adsense is not showing up on.
I would appreciate any help at all possible. I’m at a loss at what to do at this point.
BTW LOVE YOUR THEME! It freakin rocks!
Fannie
time4deals.com
ModIt’s also not showing up on any of your Archive or Category pages. Do you have any kind of plugin that only affects pages?
Ken
Kenneth/Syahir… is this something that is fixable? I’m like freaked out now and not sure what to do? Is there someone that you would recommend that can actually look at our site to help us out?
if you think it’s not something readily fixable, then I understand but can you let me know so I’m not thinking it’s something that would be worked on.
Thanks so much!
Kenneth/Syahir!!
I figured it out! It’s not a coding issue at all but an Adsense limit!! It’s only 3 adsense ads per page that will show up. And since I can’t control how many ads show up in the “in between” posts I guess the “in-between” overrides the side column ads. ๐
thanks guys! for trying to help!
ModThat’s because the posts come before the sidebar in your page layout. If you switched to a sidebar on the left, then you would probably see those two ads in the sidebar and then one in the post listing.
๐
Ken
I’ve been fighting with the same problem for days now. So glad I found this post. Things are working perfectly now.
AdminYou can change how many ads should be displayed in between the posts by adding this code in your child theme’s
functions.php
file:<?php
function graphene_custom_adsense_limit(){
return 2;
}
add_filter( 'graphene_adsense_ads_limit', 'graphene_custom_adsense_limit' );
?>That will limit the in-between posts adsense ads to just 2, leaving 1 more ad available for your sidebar.
Viewing 10 posts - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.