在WP电子商务中创建一个标题迷你购物车-第1部分

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WP电子商务中创建一个标题迷你购物车-第1部分相关的知识,希望对你有一定的参考价值。

CREATE A HEADER MINI-CART IN WP E-COMMERCE - Part 1
  1. <!--start header-cart-->
  2. <div id=""><a href="http://example.com/products-page/checkout/">
  3. <!-- name the class anything you like --> <span class="ge-count">
  4. <? if (function_exists('wpsc_cart_item_count')) { // checks to see if this function exists
  5. if (wpsc_cart_item_count() == 0 || isset($_GET['sessionid'])) { // checks if count is zero or sessionid is set
  6. echo "Shopping cart is empty";
  7. }
  8. elseif (wpsc_cart_item_count() == 1 || isset($_GET['sessionid'])) { // checks if count is one or sessionid is set
  9. echo wpsc_cart_item_count(); // this is the function that checks the item count in your cart
  10. ?>
  11. item in cart
  12. <?
  13. } else
  14. {
  15. echo wpsc_cart_item_count();
  16. ?>
  17. items in cart
  18. <? }
  19. } ?>
  20. </span></a>
  21.  
  22. </div><!--close header-cart-->

以上是关于在WP电子商务中创建一个标题迷你购物车-第1部分的主要内容,如果未能解决你的问题,请参考以下文章

在WP电子商务中创建一个标题迷你购物车-第2部分

HTML 在WP电子商务中创建一个HEADER MINI-CART - 第1部分

PHP 在WP电子商务中创建一个HEADER MINI-CART - 第3部分

CSS 在WP电子商务中创建一个HEADER MINI-CART - 第2部分

有没有办法在不刷新页面的情况下在电子商务网站中创建“添加到购物车”?

Magento2 主题迷你购物车 KO 模板问题