• Dear Author,

    Your theme is one of the best free theme to be used with Elementor. Everything was great from the overall design and features.

    I wonder if there is an easy way to get the cart panel automatically slides out when product added to cart, from there customers can choose to proceed to payment or to continue shopping.

    Thank you and best regards,

    Tung

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author themeszone

    (@themeszone)

    Hello Tung

    Thanks for using my theme, I really did try to make it as fit as possible for Elementor.

    The thing you are asking to is easy to do but only on product listing page where products are added to cart through ajax request, on a single product page the page actually reloads itself when you press add to cart so to make it work on listing page open ellie/js/cart-toggler.js and add the following at the bottom of the file:
    jQuery( function( $ ) {
    $( document.body ).on( ‘adding_to_cart’, function() {
    if ( ! document.body.classList.contains(‘cart-toggled-on’) ) {
    document.body.classList.add(‘cart-toggled-on’);
    }

    });
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Cart panel slides out’ is closed to new replies.