This originally arose as an isssue with Swift but checking on a default Smart site it is there too.
https://www.webeg.net/smart/
graphicz testtest
Banana earings and ladybird earings have minimum qty orderable of 6
Go to this test site, login as graphic testtest and add Banana earings and Ladybird earings to the wish list. Go to the wishlist and try to add a qty of 1 of either to the cart, now scroll down and a whole second page has been appended to the first.
It seems that both in Swift and in Smart this element of the dynamic.js (line 2007) is not working
Why is the 'showPopup' - 'slideFadeToggle' not working?
Is there a way to fix this or could it be re-written to open the popup in Fancybox? - It is easy enough to add fancybox to Smart.
Thank you!
https://www.webeg.net/smart/
graphicz testtest
Banana earings and ladybird earings have minimum qty orderable of 6
Go to this test site, login as graphic testtest and add Banana earings and Ladybird earings to the wish list. Go to the wishlist and try to add a qty of 1 of either to the cart, now scroll down and a whole second page has been appended to the first.
It seems that both in Swift and in Smart this element of the dynamic.js (line 2007) is not working
Code:
$.ajax({ url: this.action, // url where to submit the request type : "POST", // type of action POST || GET dataType : 'json', // data type data : $(this).serialize() + '&' + g_sAddToCartButtonName + '=Add to Cart&AJAX=1', // post data || get data success : function(result) { $('.wishlistmodal').show(); $(this).addClass('showPopup'); $('.atcpopup').slideFadeToggle(); },
Is there a way to fix this or could it be re-written to open the popup in Fancybox? - It is easy enough to add fancybox to Smart.
Thank you!
Comment