• Hi there,

    First, I want to say that I LOVE the Shortcodes Ultimate, it is truly a great plugin, thank you.

    To make this easy I will copy and paste the issue from my client about the conflict between your plugin and MagicMember’s plugin.

    CLIENT: We’ve created a page for the member list and placed the shortcode with [private] visible only to three membership titles. When testing as a member, the member list still does not appear, however, as administrator, it is working fine.

    We have enabled custom fields to show on public profile under content controls.

    What are we missing to make the member list viewable to only paid members?

    MAGICMEMBERS: Hi,
    The issue is with Shortcodes Ultimate plugin. They also have [private] shortcode and they conflict. Either disable the plugin or edit the plugin and remove the private shortcode section.

    So, my question is how can I remove the “private shorcode section?” I DO NOT want to disable the plugin.

    Thank you,
    Christine 🙂

    http://wordpress.org/plugins/shortcodes-ultimate/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Vova

    (@gn_themes)

    Hi Christine,

    you can easily remove any shortcode with plugin API.
    Example:

    function remove_su_shortcode($shortcodes) {
       unset( $shortcodes['private'] );
       return $shortcodes;
    }
    
    add_filter( 'su/data/shortcodes', 'remove_su_shortcode' );
    Thread Starter ChristineZ

    (@christinez)

    THANK YOU VLADIMIR!

    Okay … just making sure … what is the name of the plugin? And can I just copy and past what you wrote into the plugin?

    THANK YOU again … I LOVE, LOVE your plugin. I use it on all my clients websites,
    Christine 🙂

    Plugin Author Vova

    (@gn_themes)

    I mean API of my plugin.

    You can just paste this code to your theme’s functions.php file and it will work.

    Thread Starter ChristineZ

    (@christinez)

    Thank you again Vladimir!

    After installing the plugin can not edit pages. Displays a white card. How plug excluding it all works properly. How to solve this problem without disabling the plugin?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Shordcode Conflict??’ is closed to new replies.