• I was having a nonworking menu problem which was solved by going through plugins and deactivating them one by one at Romik’s suggestion. That worked, but now I have a new problem… I only use plugins I really need. Two that I really depend on for displaying content are now unusable because they break the menu.

    Now I have to choose between the two plugins and the template itself. Switching to a different template that works with the plugins is less work than redoing hundreds of pages of content (I use .evolve on 8+ websites). I just don’t want to switch, I love the template. Is there anyway to send out an update that allows more plugins to work with it? Is the pro version more stable?

    The two plugins in question:

    https://ww.wp.xz.cn/plugins/responsive-accordion-and-collapse/

    https://ww.wp.xz.cn/plugins/shortcodes-ultimate/

Viewing 9 replies - 1 through 9 (of 9 total)
  • I would recommend to create a child theme and define in its functions.php something like:

    function evolve_dequeue_script() {
    
    	// evolve uses Font Awesome styles, we can dequeue this
    	wp_dequeue_style( 'wpsm_ac-font-awesome-front' );
            
            // evolve uses Bootstrap styles, we can dequeue this
    	wp_dequeue_style( 'wpsm_ac_bootstrap-front' );
    
    	// evolve uses Bootstrap latest scripts, we can dequeue this
    	wp_dequeue_script( 'wpsm_ac_bootstrap-js-front' );
    
    }
    
    add_action( 'wp_enqueue_scripts', 'evolve_dequeue_script', 100 );

    This ‘hack’ can be used for any conflicting plugin which uses the Bootstrap framework, just need to always define correct slug of the script/style 😉

    • This reply was modified 7 years, 10 months ago by Romik84.

    One more plugin that does not work with menu:
    https://ww.wp.xz.cn/plugins/content-views-query-and-display-post-page/

    Thread Starter webemy

    (@webemy)

    Ok, thank you, I’ll give it a try.

    @webemy — I am using shortcodes ultimate on the site with Evolve & not running into any conflicts with the menu or any other part of my site. I supposed it might be tied to specific shortcodes you are using, but I don’t see any reason why that should conflict, unless a shortcode is being used within the menu itself.

    You might want to check the Shortcodes Ultimate settings as well as review the particular shortcodes you are using.

    @nickpapag visual or functional issue?

    Romik when disabled the plugin i had my menu start working. the problem only in desktop mode. when click an item the dropdown appeared and couldn’t click any of submenu. in moblie no problem

    For sure a conflict with Bootstrap if the plugin uses it. Unfortunatelly many wp plugins uses an old version of Bootstrap which will always break something with this theme (sigh)

    Dont worry we like to be pioneers. A bit of more job now to fix things but we trust you.
    Please, is there a way to make the fonts smaller in bootstrap slider title when in mobile;

    @nickpapag please open a new thread 😉

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

The topic ‘Plugins vs Menu 3.9.+’ is closed to new replies.