Fatal error: Call to a member function get_price_html() on a non-object

后端 未结 1 1453
萌比男神i
萌比男神i 2021-01-22 15:34

I am trying to display the price of each product in the search it works for most products but when I search for a piticular product I keep getting this error

Fatal error

1条回答
  •  醉话见心
    2021-01-22 16:14

    In this file $product is not defined, so define it.

    This code might solve your problem.

    global $woocommerce;
    $product = new WC_Product(get_the_ID()); 
    echo $product->get_price_html(); //Shows the price
    

    0 讨论(0)
提交回复
热议问题