• Resolved arturozapote

    (@arturozapote)


    Hi everybody,

    Hope you are enjoying your holidays.

    I’m currently experiencing a bad time with a lot of ad boxes all around the front page, 11 in total!
    At the end of every article’s excerpt, there are ads showing up. Because of this, the site is slowing down. You can see here: transeuntemx.com

    I’ve tried solutions suggested in this post, without success:
    https://wordpress.org/support/topic/exclude-wordads-from-front-page/#post-8591604

    Could you please help me to deactivate those ads on the front page? Ideally I would like to have them just on the side bar.

    Thanks for your support.

    Arturo

    • This topic was modified 7 years, 7 months ago by arturozapote.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Derek Springer

    (@derekspringer)

    Howdy @arturozapote,

    Unfortunately, I think your theme doesn’t properly implement the_excerpt filter on the front page. Your best bet would be to add the following to your functions.php to disable the below post unit on the front page.

    function adcontrol_disable_inpost_front_page() {
    	if ( is_front_page() ) {
    		add_filter( 'adcontrol_inpost_disable', '__return_true' );
    	}
    }
    add_action( 'wp_head', 'adcontrol_disable_inpost_front_page', 10 );
    Thread Starter arturozapote

    (@arturozapote)

    Hi, Derek.

    Thanks. It works!

    : )

    Plugin Author Derek Springer

    (@derekspringer)

    Great, cheers!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Exclude Wordads from front page items’ is closed to new replies.