Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #227397

    Hi

    I’ve looked everywhere and can’t seem to see an answer to this. I have woocommerce running on Enfold and everything works fine … except I can’t find how to get the sub menu showing Shopping Cart and Checkout to appear. I have seen one post that commented that this is automatically created when you install woocommerce but I can’t see any reference to it in either the Enfold theme options, the Menu options of woocommerce options.

    Also, can the slide out shopping cart icon (top right) be made any bigger?

    And finally, I don’t see the slide out icon (above) when viewing on a mobile so there is no route to the shopping cart or checkout (though I guess the secondary menu will resolve this?

    Thanks in advance

    Mark

    #227418

    Hey MKW270210!

    You can install the woocommerce pages by clicking on the violet button above the Woocommerce panel. This will create all the woocommerce pages. Go to Appearance > Menus then create a new menu, set this menu as Enfold Secondary Menu under Theme Location. Insert the Cart and the Checkout page on the new menu. You can add this on Quick CSS or custom.css to increase the size of the shopping cart icon:

    #header_main > ul > li > a.cart_dropdown_link span {
    font-size: 20px;
    }

    Best regards,
    Ismael

    #227437

    Excellent! Thanks so much for the help and so quick to respond. Great support!

    Just regarding my last point – is the cart icon designed to NOT show on smartphone screens? This would mean the only route to the cart/checkout would be via the two links I have just added at the very top of the page.

    #227478

    Hi!

    You can add this on Quick CSS or custom.css to show the cart on mobile view:

    @media only screen and (max-width: 767px) {
    .responsive .cart_dropdown {
    display: block;
    top: 120px;
    }
    }

    Cheers!
    Ismael

    #227485

    Just what I needed. Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Shopping Cart menu’ is closed to new replies.