[Support request] Slide out shopping cart menu

Home Forums Support [Support request] Slide out shopping cart menu

Home Forums Support Slide out shopping cart menu

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #873944
    blademike

    Hi,

    How do I enable the woocommerce shopping cart menu on the menu to be slide out instead of going to the cart page when clicked.

    #874380
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    So if you click the cart icon in the menu, it would open the off canvas panel?

    Let me know ๐Ÿ™‚

    #877054
    blademike

    Hi Tom,

    Yes, correct.

    #877682
    Tom
    Lead Developer
    Lead Developer

    Try adding this function:

    add_action( 'wp_enqueue_scripts', function() {
        $script = "jQuery( document ).ready( function($) {
            $( '.wc-menu-item a' ).on( 'click', function( e ) {
                e.preventDefault();
                generateOffside.open();
            } );
        } );";
    
        wp_add_inline_script( 'generate-offside', $script );
    } );

    Let me know ๐Ÿ™‚

    #2320274
    johnaps

    How can we add the cart contents to show on the off canvas menu??
    Edit (never mind i found a custom way)

    #2320375
    Leo
    Staff
    Customer Support

    Glad to hear.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Slide out shopping cart menu’ is closed to new replies.