私はワードプレスでwoocommerceを使用しています..カートアイテム名とカートアイテムのコストを表示できません。さらに、ワードプレスページの合計..誰か助けてくれますか?
woocommerce のフックはこちら: http://docs.woothemes.com/document/hooks/
私が試したコードは次のとおりです。
<?php
/*
Display number of items in cart and total
*/
global $woocommerce;
echo "Items in cart: ".sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);
echo "<br />";
echo "Total: ".$woocommerce->cart->get_cart_total();
?>