Advertisement
Udoro

Build Woocommerce store in Oxygen part 3 - PHP

Jul 31st, 2021
1,310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1.  
  2. //CART COUNTER
  3.  
  4. <?php global $woocommerce; ?>
  5.  
  6.  
  7.  
  8.  
  9.  
  10. <p style="margin-bottom: 0px;">
  11.  
  12.  
  13. <a class="cart-contentss" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>">
  14.  
  15.  
  16. <?php echo sprintf(_n('%d ', '%d ', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?>
  17.  
  18. </a>
  19.  
  20. </p>
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement