Forum replies created

    Evgeny
    Keymaster
    Posts: 1010
    May 1, 2024 at 10:47 am #49387

    Hi Michael,
    It isn’t any nuisance at all. I should have explained. This is exactly what I wanted to show. Take what you wrote, add a semicolon at the end, and add it where you want a line break to appear. And it will. Look at it as a functioning alternative to the br tag.

    Evgeny
    Keymaster
    Posts: 1010
    April 30, 2024 at 9:39 am #49385

    Hi Michael,
    No problem. I’m happy it worked out. As for your questions – title attribute cannot be styled directly. There are options to style it using CSS, but these are workarounds, I wouldn’t advise to do it and it is out of the scope of our support. As for the inability to use
    – this cannot be done, true. WordPress removes them. Use this instead:

    Without the double quotes. It should work.

    UPDATE: see here:
    https://prnt.sc/nlHUDG4eFWld

    Evgeny
    Keymaster
    Posts: 1010
    April 20, 2024 at 4:57 pm #49376

    No problem. I’m happy to hear that removing Gutenberg solved all the issues. Have a great weekend.

    Evgeny
    Keymaster
    Posts: 1010
    April 20, 2024 at 4:46 pm #49374
    This reply has been marked as private.
    Evgeny
    Keymaster
    Posts: 1010
    April 20, 2024 at 1:20 pm #49370

    I fixed the issue with the website. I looked into your questions. The problem with Customizer is solved by deactivating the LayerSlider; it appears that there’s some kind of conflict. We shall investigate. The background of the comment comes from the Gutenberg builder you are using, and some are part of the colour scheme of our theme. You can deactivate Gutenberg to find out which is which. If you want to fix it, some CSS code must be added. I can give it to you if you wish.

    Evgeny
    Keymaster
    Posts: 1010
    April 20, 2024 at 12:06 pm #49368

    Nevermind, I found the FTP. Looking into it.

    Evgeny
    Keymaster
    Posts: 1010
    April 20, 2024 at 11:55 am #49367

    Hi. Please give me FTP access. It looks like one of the plugins I deactivated crushed the website. I will fix it with FTP. Also, please send me the error report that arrived. Sorry for the inconvenience.

    Evgeny
    Keymaster
    Posts: 1010
    April 17, 2024 at 9:01 am #49363

    I tried to reset my password, but the email never arrived. Can you set the password for me and send it in a private message? Thanks.

    Evgeny
    Keymaster
    Posts: 1010
    April 15, 2024 at 8:50 pm #49360

    Unfortunately, the website is not working at the moment. When it is fixed, let me know, and I will have a look.

    Evgeny
    Keymaster
    Posts: 1010
    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’);