最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - woocommerce: Customize email with item total count

programmeradmin0浏览0评论

i looking everywhere, but not found this functions, i need to calculate the total items in the report email new order,i think is (admin-new-order.php) so i need to see the numbers total products in the under row on subtotal or elsewhere

Item                       Price                       Quantity             
------------------------------------------------------------------
Product A                      $10                         4                
Product B                      $5                          1      
Product C                      $15                         2                 



Cart Totals

Cart Subtotal       $30
Count products      7 <---
Shipping Cost       $12

Order Total         $42

How i do ? Help..me..

i looking everywhere, but not found this functions, i need to calculate the total items in the report email new order,i think is (admin-new-order.php) so i need to see the numbers total products in the under row on subtotal or elsewhere

Item                       Price                       Quantity             
------------------------------------------------------------------
Product A                      $10                         4                
Product B                      $5                          1      
Product C                      $15                         2                 



Cart Totals

Cart Subtotal       $30
Count products      7 <---
Shipping Cost       $12

Order Total         $42

How i do ? Help..me..

Share Improve this question edited Feb 5, 2021 at 19:13 Ruvee 1641 gold badge1 silver badge10 bronze badges asked Feb 5, 2021 at 18:12 ExolonExolon 54 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You could call either of the following functions in your email template:

<?php echo WC()->cart->get_cart_contents_count(); ?>

OR

<?php echo(count(WC()->cart->get_cart())); ?>
发布评论

评论列表(0)

  1. 暂无评论