Home Forums WoodMart support forum Add to cart icon instead of Add to cart button for three-column product layout? Reply To: Add to cart icon instead of Add to cart button for three-column product layout?

#306002

Hello,

Please add this code in the Theme Settings > Custom JS > on document ready:

function smallBtn(){
	jQuery('.wd-hover-base').each(function () {
		var $this = jQuery(this);
		$this.find('.wd-add-btn').parent().addClass('wd-add-small-btn');
		$this.find('.wd-add-btn').removeClass('wd-add-btn-replace').addClass('wd-action-btn wd-style-icon wd-add-cart-icon');
	});
}
smallBtn();
jQuery(document).on('pjax:complete', function () {
	smallBtn();
});

Best Regards