Home › Forums › WoodMart support forum › Shop page cart button › Reply To: Shop page cart button
July 29, 2020 at 12:56 pm
#215117
Artem Temos
Keymaster
Try to add the following code snippet to the Custom JS area in Theme Settings to fix this issue.
jQuery('.woodmart-hover-base').each(function () {
var $el = jQuery(this),
$elBtn = $el.find('.woodmart-add-btn');
$el.addClass('add-small-content');
$elBtn.addClass('wd-action-btn wd-add-cart-btn wd-style-icon');
});