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

Posted

tags:

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

<!--start header-cart-->
 <div id=""><a href="http://example.com/products-page/checkout/">
   <!-- name the class anything you like -->  <span class="ge-count">
              <? if (function_exists('wpsc_cart_item_count')) { // checks to see if this function exists
                  if (wpsc_cart_item_count() == 0 || isset($_GET['sessionid'])) { // checks if count is zero or sessionid is set
                      echo "Shopping cart is empty";
                  }  
   elseif (wpsc_cart_item_count() == 1 || isset($_GET['sessionid'])) { // checks if count is one or sessionid is set
                      echo wpsc_cart_item_count(); // this is the function that checks the item count in your cart
   ?>
            item in cart
 <?
                  } else
   { 
                      echo wpsc_cart_item_count();  
   ?>
            items in cart
 <?    } 
              } ?> 
          </span></a>
    
</div><!--close header-cart-->

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

CREATE A HEADER MINI-CART IN WP E-COMMERCE - Part 2
  1. #ge-header-cart a {}
  2. .ge-count{
  3. /* PUT THE MINI-CART TO THE RIGHT OF THE LOGO */
  4. display: block;
  5. padding: 70px 0px 10px 690px;
  6. text-align: left;
  7. color: #FF8C00;
  8. text-shadow: 1px 1px 0
  9. rgba(0, 0, 0, 0.8);
  10. /* BELOW IS THE SHOPPING CART ICON/IMAGE */
  11.  
  12. background: url(http://example.com/wp-content/uploads/2012/07/ico-cart.png) no-repeat ;
  13. /* POSITION THE IMAGE TO THE LEFT OF THE TEXT */
  14. background-position: 70% 85%;
  15. }

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

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

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

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

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

在 C# (WP7) 中创建音频文件

在 wp7/wp8 中创建加密的 .sdf 文件