I have resolve this issue by adding below mentioned line into woodmart theme location:
wp-content/themes/woodmart/js/scripts/global/btnsToolTips.js line number 56
`title : function() {
var $this = $(this);
if ($this.find(‘.added_to_cart’).length > 0) {
return $this.find(‘.add_to_cart_button’).text();
}
if( $this.find(‘a’).length > 0 ) {
return $this.find(‘a’).text();
}
return $this.text();
}`
-
This reply was modified 4 years, 8 months ago by vsvikas59.