Fixed
-
Not sure if anyone else will need this, but this plugin was throwing this error for me “id was called incorrectly. Product properties should not be accessed directly. Backtrace: require”
I just edited line 31 from:
$map = get_post_meta($obj->id,'_map_price',true);
to:
$map = get_post_meta($obj->get_id(),'_map_price',true);and wahlah, it’s working again!
Hope that helps
The topic ‘Fixed’ is closed to new replies.