Viewing 1 replies (of 1 total)
  • Plugin Author Bainternet

    (@bainternet)

    There are Two way:

    1. contact that plugin developer and tell him his code should only filter public post types!

    2. try removing the other plugin filters when not needed, something like this:

    add_action('scui_external_hooks_remove','remove_digi_from_shortcode');
    function remove_digi_from_shortcode(){
    	remove_filter( "the_content", "dprv_display_content" );
    }
    
    add_action('scui_external_hooks_return','return_digi_for_other_types');
    function return_digi_for_other_types(){
    	add_filter( "the_content", "dprv_display_content" );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Shortcode UI compatibility with digiprove’ is closed to new replies.