• Open
  • Michael Sinclair
    Participant
    April 1, 2024 at 10:49 pm #49342

    I am constructing a fairly comprehensive member only school alumni site with a lot of member interaction. So as to make it easy for members to understand what the various menu links do, I plan to use the Menu Title Attribute field as available in Menus.

    On testing, the titles do not display with Evolve plus and Evolve plus child but do when testing with other themes.

    I have carried out the following tests, but to no avail: cleared the cache, checked the Customizer for any missed settings, deactivated all plugins and swapped themes to WP 2013 and Hello Elementor – These do display the Title message.

    Please can you help in getting the menu titles to work while using Evolve Plus.

    Guest admin login can be provided privately if this helps

    Wordpress version: 6.4.3
    Evolve Plus version: 3.0.5
    Evolve version: 4.3.7 Should this be deleted if using the Plus version?
    All plugins are of the latest versions

    Thank you

    Evgeny
    Keymaster
    Posts: 988
    April 2, 2024 at 11:00 pm #49346

    Hi! Great question. There are no titles on the menu because they are deactivated in the functions.php. The code below can be used in the functions.php of the Evolve Child theme to neutralize it. Once in, the title tags will start appearing.

    function remove_menu_notitle_filter(){
    remove_filter(‘wp_nav_menu’, ‘evolve_menu_notitle’);
    }

    add_action(‘after_setup_theme’, ‘remove_menu_notitle_filter’);

    Michael Sinclair
    Participant
    Posts: 28
    April 29, 2024 at 12:43 pm #49382

    Hi Evgeny,

    Apologies for the late reply.
    Thanks for your response, the menu titles now work.
    One last question:
    How can I add simple formatting such as line break and text color to the menu title. Adding <br/> for example just gets stripped or is ignored.
    Thank you

    Michael Sinclair
    Participant
    Posts: 28
    April 29, 2024 at 12:43 pm #49383

    Hi Evgeny,

    Apologies for the late reply.
    Thanks for your response, the menu titles now work.
    One last question:
    How can I add simple formatting such as line break and text color to the menu title. Adding <br/> for example just gets stripped or is ignored.
    Thank you