I have a custom product type WooComerce and I need to access the cart url from it.
It would seem simple enough:
class WC_Product_My_Product extends WC_Product_Simple {
public function some_method() {
global $woocommerce;
$href = $woocommerce->cart->get_cart_url();
}
}
However:
Fatal error: Call to a member function get_cart_url() on a non-object
What could be wrong?
Is the variable $woocommerceunavailable when defining a custom product class?
If so, is there any internal method / variable to access it? (Or a trolley?)
source
share