0

我正在使用 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>';
    ?>

任何帮助将非常感激!

4

2 回答 2

0

我认为这是一个主题问题,因为 Mystile 也不适合我。您将不得不手动安装以前的版本或等待下一个版本。

于 2013-07-21T01:43:55.397 回答
0

你需要改变:

回声 $woocommerce->cart->get_cart_total();

回声 $woocommerce->cart->wc_get_cart_total();

我相信。;)

于 2017-10-24T21:21:11.183 回答