• When External Links Plugin is activated, the menu of the mobile site with WPTouch Pro 3 doesn’t work.
    Solved with adding this line in the functions.php file of the child mobile theme in WPTouch Pro 3 directory to force disabling External Links Plugin :

    remove_action('settings_page_external-links', array('external_links_admin', 'save_options'), 0);
    remove_action('load-settings_page_external-links', 'external_links_admin');
    remove_action('wp_print_styles', array('external_links', 'styles'), 5);
    remove_filter(($o['global'] ? 'ob_' : '' ) . 'filter_anchor', array('external_links', 'filter'));
    remove_action('admin_menu', array('external_links', 'admin_menu'));
    remove_action('wp_footer', array('anchor_utils', 'ob_flush'), 10000);
    remove_action('wp_head', array('anchor_utils', 'ob_start'), 10000);
    remove_filter('the_content', array('anchor_utils', 'filter'), 100);
    remove_filter('the_excerpt', array('anchor_utils', 'filter'), 100);
    remove_filter('widget_text', array('anchor_utils', 'filter'), 100);
    remove_filter('comment_text', array('anchor_utils', 'filter'), 100);

    https://www.ads-software.com/extend/plugins/sem-external-links/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Resolve incompatibility with WPTouch Pro 3 Themes’ is closed to new replies.