Tagged: ,

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #535579

    I have the same problem as #522607. The answer was hidden. My site is on a development server so there is no access. I have created a Mega Menu and the sub menus all open to a new window as they should. The Row Header link does not. How do I resolve this problem. I am using Enfold 3.3.2. I am afraid to update to the latest version due to all the problems I am seeing on the Forum. I have lots of Color Sections with images and I keep seeing that these go away. We are about to go live on this site and we need to fix the menus, please?

    #535586

    Hi Ride123!

    Can you please post the link to your website?
    Also, please make sure that you are using the latest version of Enfold which is currently 3.4.2 – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Yigit

    #535655

    As stated…the site is on a local development server and I am afraid to upgrade to the new version due to problems I have seen. You had an answer for this problem ( #522607) but the answer was hidden. Can you please just tell me what you told that person?

    #535658

    Hey!

    Sorry i missed that part.
    You can try adding following code to Functions.php file in Appearance > Editor

    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('span.mega_menu_title a ').attr('target','_blank');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    If that does not help, please post the link to the reply #522607

    Regards,
    Yigit

    #535670

    Thank you! This works. Has this fix been applied in the newest version of Enfold? Or will I have to add it again when I upgrade?

    #536289

    Hi,

    I’m not 100% sure but I think this is something you will have to apply to the sites you need it on.

    Regards,
    Rikard

    #551472

    Hello… I am having the same issue…

    The fix you provided does not work for me…

    I am on Enfold 3.4.6

    reach.beloitschools.org

    Under “PROGRAMS”
    “cyBER Robotics Team”

    #551693

    Hi!

    The code has not been added to your site, make sure to place it in the functions.php of the child theme.

    Cheers!
    Josue

    #551702

    Hi Josue….

    The code is in my child-theme’s function.php … I am not sure why you say it is not.

    I’ve copied and pasted the code … I’ve even tried it on the parent theme and it does not work for me.

    Please help.

    #551704

    Hi!

    Can you enable theme editing in the Network or hand us a FTP account?

    Cheers!
    Josue

    #551733

    I am sorry….
    While getting credentials ready for you I realized that I had updated the functions.php on the old development site..
    My apologies…

    It is working now with the code in the right place.
    Thank you

    #551790

    No problem, glad to help :)

    Regards,
    Josue

    #846787

    Added the code top functions.php child and now every menu item open in a new window.

    This is what it looks like with the added code.
    —–

    <?php
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘span.mega_menu_title a ‘).attr(‘target’,’_blank’);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘add_custom_tooltip’);

    }
    ?>

    #847023

    PLEASE FIX WORD PRESS CORE SO WE CAN OPEN NEW TABS AND WINDOW IN CUSTOM LINK.

    #847897

    Hi,

    Thank you for your feedback and the details provided.
    We appreciate it a lot

    Best regards,
    Basilis

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.