我正在为电子商务网站使用woocommerce和wordpress。我希望能够在页面的任何位置显示用户购物车中的商品数量和总价格。
通常 - 如果你使用其中一个woo主题 - 这会显示在菜单导航栏中。但是,我使用的是一个几乎完全空白的主题,我不知道如何获取项目/价格总信息并以html显示。他们的文档提供了以下代码段:
http://docs.woothemes.com/document/show-cart-contents-total/
<?php global $woocommerce; ?>
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>`<br>
但是我不明白我用什么HTML标签或类来进行显示。我需要使用哪种元素和类ID才能显示它?
答案 0 :(得分:1)
请确保在主题的functions.php文件中包含以下代码。
此外,这将使您的购物车自动更新,而无需重新加载页面。
// Ensure cart contents update when products are added to the cart via AJAX (place the following in functions.php)
add_filter('add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment');
function woocommerce_header_add_to_cart_fragment( $fragments ) {
global $woocommerce;
ob_start();
?>
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
<?php
$fragments['a.cart-contents'] = ob_get_clean();
return $fragments;
}