Thanks for providing above reply. This hasnt worked for me. I have replaced
if ( ! isset( $GLOBALS['product'] ) ) {
return '';
}
global $product;
with
global $product;
if ( ! $product || ! is_object( $product ) || ! method_exists( $product, 'get_id' ) ) {
return '';
}
but nothing has changed on the front end.
In the email I received it says to replace:
if ( ! isset( $GLOBALS['product'] ) ) {
return '';
}
global $product;
with
global $product;
if ( ! $product || ! is_object( $product ) || ! method_exists( $product, 'get_id' ) ) {
return '';
}
However I cant find the code that contains “039” in class-awl-display.php
If you can offer more support I would be greatfull. Thanks.
-
This reply was modified 3 years, 10 months ago by seoaboles.
-
This reply was modified 3 years, 10 months ago by Yui. Reason: please use CODE button for proper formatting