• Resolved Gre43

    (@gre43)


    After the last update of Elementor my share plugin: Sassy Social Share is not visible anymore.
    When I switch back to the wordpress editor it is visible on the page, but when in Elementor it’s gone. Even when putting it in through a shortcode it isn’t visible.
    Tried it on 2 sites, with 2 different theme’s: Virtue theme and Twenty Sixteen theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,
    We are looking into this.

    • This reply was modified 9 years, 4 months ago by Boaz.
    • This reply was modified 9 years, 4 months ago by Boaz.
    Plugin Author ArielK

    (@arielk-1)

    It seems that the plugin uses the same priority like Elementor. Please add this code in your functions.php (child theme):

    add_action( 'init', function() {
    	global $heateor_sss;
    
    	if ( ! $heateor_sss )
    		return;
    
    	remove_filter( 'the_content', array( $heateor_sss->plugin_public, 'render_sharing' ) );
    	add_filter( 'the_content', array( $heateor_sss->plugin_public, 'render_sharing' ), 20 );
    } );
    Thread Starter Gre43

    (@gre43)

    Thank you so much, this works.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Share plugin doesnt work after last update’ is closed to new replies.