Tagged: 

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #723117

    Dear Enfold

    We would like to activate WooCommerce shop and add the cart to the main menu http://prntscr.com/difj17 in order to have it look like here: http://prntscr.com/difj9n

    Unfortunately the shopping cart doesn’t show up in the main menu but below (see print screen in private content).

    Do you know how to fix this?

    Thank you,
    R

    #723124

    Hey!

    To change the icon, please refer to this post – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/

    I added following code to Style.css file of your child theme

    ul#menu-item-shop {
        display: block;
    }

    then added following code to functions.php file in your child theme

    function av_move_ci(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery("ul#menu-item-shop").detach().appendTo('#avia-menu')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_ci');

    Please review your website now

    Cheers!
    Yigit

    #723149

    Hi Yigit,

    Wow, thank you for the swift fix!! It’s almost perfect, just that the symbol is going too far down and thus covering the thin gray line under the header enus: http://prntscr.com/dig3fx

    Would you also be able to change this?

    Thank you and best,
    Raphael

    #723155

    Ah, and also once something is inside the cart, the content showing is overlaying a second version of the same content. See printscreen below.

    Thank you for looking into it

    #724228

    Hi,

    there is no cart icon inside your menu. Did you remove it again? make sure that you purged all your cache. We need to be able to inspect the elements in question.

    Best regards,
    Andy

    #724361

    Dear Andy

    Yes, I’ve deactivated it as it isn’t working properly yet.

    I would shortly activate it for when you’re working on it, but I don’t know when that is. So may you please just shortly change the “Header Shopping Cart Icon” setting here http://prntscr.com/djcuyp once you’re working on it? And afterwards switch it back to “display floating…”

    Thank you and best
    Raphael

    #724494

    Hi,

    use this code:

    .html_cart_at_menu.html_bottom_nav_header #menu-item-shop {
    top: -2px;
    }

    and adjust as needed.

    The overlay is caused by some kind of customization you’ve implemented. Remove every customizations to find out which one is causing it.

    Best regards,
    Andy

    #724921

    Hi Andy

    I removed all Custom CSS and also the functions.php specifications but it didn’t change a thing. The dropdown of the cart is still malfunctioning if in the header menu. It, however, works fine if I chose “floating on the side”.

    Can you please have another look into it in order to find a solution?

    Thank you so much,
    Raphael

    #725278

    Hi,

    check with another (default) WP theme, if you got the same error or not. Remove every plugin (but WooCommerce of course) to find out which one is causing it. Make sure to use parent theme, instead of child theme.

    Best regards,
    Andy

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