WordPress Woocommerce cart showing error

While configuring Woocommerce in WordPress with Total theme we will get an error in cart button,


ADD TO CART<SPAN CLASS="FA FA-CHEVRON-RIGHT"></SPAN>


This is is bug and it will be fixed in the next release as per the developer notes.

For a quick fix , edit the file at framework/woocommerce/config.php and change the line:

return __( 'Add To Cart', 'wpex' ) .'<span class="fa fa-chevron-right" />';

to:

return __( 'Add To Cart', 'wpex' );

That's all........

Leave a Reply