• Resolved prokops

    (@prokops)


    Hello! Sorry if this is something very obvious that I have missed.

    The sidecart opens on buy button. We would like it to go away after 3 seconds with no user interaction.

    Is this possible?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author xootix

    (@xootix)

    Hello,

    There is no such option in the settings. However, you can achieve this with a snippet.
    This will close side cart after 3 seconds of “Add to cart” event.

    add_action( 'wp_footer', function(){
    ?>
    <script type="text/javascript">
    jQuery(document).ready(function($){
    $(document.body).on( 'added_to_cart', function(){
    setTimeout(function(){
    $('.xoo-wsc-opac').trigger('click');
    }, 3000 )

    });
    })
    </script>
    <?php
    } );
    • This reply was modified 7 months, 2 weeks ago by xootix.
    Thread Starter prokops

    (@prokops)

    Awesome!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Auto hide sidecart after x seconds’ is closed to new replies.