• Resolved RudolfFiedler

    (@rudolffiedler)


    Hi, it’s curious.
    If the popupmaker-plugin (1.7.30) is activated, the menu-items (in appereance-menus) are not visible. After deactivating popupmaker, the menu-items are visible.
    It is reproducible. Any idea??

    Thanks a lot,
    Rudi

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    I have similar problem. I found that there is a conflict between Popup Maker and Q Translate X.

    If I try to edit my menus(Appearance -> Menus)- I get “This site can’t be reached The connection was reset.”

    I found that if I comment out class PUM_Modules_Menu init(PUM_Modules_Menu::init(); in wp-content/plugins/popup-maker/includes/modules/menus.php)- I can open Menus page.

    I’m not sure if it’s safe to comment out that last line. Anyone ever had similar problem and what was the best solution? ??

    Regards,
    Roland

    Maybe it’s not the best way, but this is what I did in functions.php

    add_action( 'init', 'remove_popup_maker_menu_hooks' );
    function remove_popup_maker_menu_hooks(){
        if ( class_exists('PUM_Modules_Menu') )
        {
            remove_filter('wp_setup_nav_menu_item', array( 'PUM_Modules_Menu', 'merge_item_data' ) );
            remove_filter('wp_edit_nav_menu_walker', array( 'PUM_Modules_Menu', 'nav_menu_walker' ) );
            remove_action( 'wp_nav_menu_item_custom_fields', array( 'PUM_Modules_Menu', 'fields' ), 10 );
            remove_action( 'wp_update_nav_menu_item', array( 'PUM_Modules_Menu', 'save' ), 10 );
        }
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘With activated popupmaker the menu-items in backend are not visible’ is closed to new replies.