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

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: Call to a member function getpricehtml() on a non-object in /home/public_html/wp-content/theme/search.php on line 76

Read More

this is the only search I get the error on “CUP0501-001 2822505 Jacobsen Reel Motor WMSM4”.

Here is the line on the search page that is giving me trouble

getpricehtml(); ?>

Any help would be appreciated.

Related posts

Leave a Reply

1 comment

  1. 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