我正在使用wordpress主题“Mystile”,当我激活它并激活woocommerce时,我在标题中收到此错误:
Fatal error: Call to undefined method WC_Cart::get_cart_contents_count() in C:\xampp\htdocs\lol\wp-content\themes\mystile\includes\theme-woocommerce.php on line 371
第371行是以下内容:
<?php
echo $woocommerce->cart->get_cart_total();
echo '<span class="contents">' .sprintf(_n('%d item', '%d items', $woocommerce->cart->get_cart_contents_count(),
'woothemes'), $woocommerce->cart->get_cart_contents_count()) . '</span>';
?>
任何帮助将不胜感激!
答案 0 :(得分:0)
我认为这是一个主题问题,因为Mystile也不适合我。您必须手动安装以前的版本或等待下一个版本。
答案 1 :(得分:0)
您需要更改:
echo $ woocommerce-&gt; cart-&gt; get_cart_total();
要
echo $ woocommerce-&gt; cart-&gt; wc_get_cart_total();
我相信。 ;)