Hi thank you for the quick reply.
I don’t seem to be replicating it again for some reason. I have played with the settings so not sure if it was something that I had but do not now.
I was having issues with it not opening up sometimes with clicking on the Divi theme shopping cart icon. I added this to stop the link going to the cart page:
jQuery( document).ready( function( $ ){
$( '.et_pb_menu__cart-button' ).on( 'click' , function() {
CartPops.drawer.toggle();
});
});
jQuery(document).ready(function($){
$("a.et_pb_menu__icon.et_pb_menu__cart-button").attr('href','#cart');
});
I was trying to append your shortcode to the menu instead but couldn’t find it in the doc files. Maybe the #cart link is the issue but it has to have a link otherwise it refreshes the page.
This is a website with only one product so that is why I wanted to remove the going to the cart page, too many steps.
Do you have any idea how I can add your icon in there instead. I can disable the Divi cart icon altogether.