Plugin breaks on woocommerce 10+
-
The inc/wpb-wiz-filter.php file tests woocommerce version as a string, which works fine up until version 9, but once it crosses 10 it breaks. The following line needs to be updated:
if ( $woocommerce->version >= ‘3.0’ ){…
Possible solution: if ( floatval( $woocommerce->version ) >= 3.0 ){..
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Plugin breaks on woocommerce 10+’ is closed to new replies.