Home Forums WoodMart support forum Shop page cart button Reply To: Shop page cart button

#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');
});