• Resolved rcwdm

    (@rcwgsy)


    How do we remove this annoying message please?

    “Connect Yoast SEO with Zapier(Opens in a new browser tab) to instantly share your published posts with 2000+ destinations such as Twitter, Facebook and more.”

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter rcwdm

    (@rcwgsy)

    added this CSS to the admin and it worked for me.

    div.misc-pub-section.yoast.yoast-seo-score.yoast-zapier-text {
    display: none;
    }

    Add to functions.php

    /**
     * Remove Yoast Zapier notice
     */
    add_action( 'init', 'webdezy_remove_yoast_zapier_free_publishbox_text' );
    function webdezy_remove_yoast_zapier_free_publishbox_text() {
    	if ( class_exists( 'Yoast\WP\SEO\Integrations\Third_Party\Zapier_Free' ) ) {
    		$zapier_free = YoastSEO()->classes->get( Yoast\WP\SEO\Integrations\Third_Party\Zapier_Free::class );
    		remove_action( 'wpseo_publishbox_misc_actions', [ $zapier_free, 'add_publishbox_text' ] );
    	}
    }
    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I’ve archived the many replies and I’m closing this topic to be replies. It’s just not appropriate to use a plug-in’s support forum to hate on that plug-in.

    If you need support for this plug-in then feel free to start your own topic.

    If you want to blog about this plug-in then feel free to do so on another site. These support forums are no one’s blog.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Zapier notice on posts and products’ is closed to new replies.