• Resolved neuword1

    (@neuword1)


    Hi, i don’t know why on mobile reslutions top menu doesn’t expand now, i was costumizing some pages,i have not set a child theme (my fault).

    i add in functions.php :

    /**
    * Revome theme update
    */

    remove_action( ‘load-themes.php’, ‘wp_update_themes’);
    remove_action( ‘load-update.php’, ‘wp_update_themes’);
    remove_action( ‘admin_init’, ‘_maybe_update_themes’);
    remove_action( ‘wp_update_themes’, ‘wp_update_themes’);
    add_filter( ‘pre_transient_update_themes’, create_function(‘$a’, “return null;”));
    remove_action( ‘load-update-core.php’, ‘wp_update_themes’);
    add_filter( ‘pre_site_transient_update_themes’, create_function(‘$a’, “return null;”));

    /**
    * Change read more
    */

    function modify_read_more_link() {
    return ‘Continua..‘;
    }
    add_filter( ‘the_content_more_link’, ‘modify_read_more_link’ );

    ———- and in style.css :

    }
    .entry-header {
    display: none;
    }

    • This topic was modified 8 years ago by neuword1.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you show us a page with the problem?

    Thread Starter neuword1

    (@neuword1)

    Solved adding a z-index in the mobile css part.

    Tnx

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Top menu doesn’t expand on mobile’ is closed to new replies.