Hello there,
Thanks for great plugin but I could not understand why total weight does not display in cart or checkout page. I’m using some code snippets for displaying each product’s weight in cart and works but I supposed that this plugins will show total weight in cart/checkout but it doesnt.
Could you please help me,
Thanks
]]>Hello,
Our site/products have been configured in grams, but we’d like to show in KG at checkout instead. Is this possible to do ?
]]>Good afternoon
Is it possible for this plug-in to work with the title plug-in?
Regards
Hi
Thanks for making this plugin – it’s very useful.
Is it be possible to change the wording “Total Weight” in the cart and other places the total weight appears to be something different – like “Total Weight of Order” for example?
Thanks
]]>Is there any way to display lb and oz rather than oz? The cart is set up to use oz but if there was a way that the display could “do the math” and convert the total oz to lb and oz that would be great.
Thanks! Site
]]>Hi!
Thanks for this plugin, I am very happy with it.
I would like to also see the cart weight on the backend, in the Admin area, on the orders. Could that be integrated please?
Thank you, and kind regards!
]]>hi
is there a way to show weight per product on cart and checkout page?
best regards
]]>We are actively looking for contributors to translate this and other Octolize plugins. Each supported language tremendously help store owners to conveniently manage shipping operations.
Your translations contribute to the WordPress community at large. Moreover, we’re glad to offer you discounts for our PRO plugins and establish long-term collaboration. If you have any translation related questions, please email us at [email protected].
Head over here and help us to translate this plugin:
https://translate.www.ads-software.com/projects/wp-plugins/woo-cart-weight/
]]>honestly, I don’t see any total weight added to the checkout table. Is it not displaying if the weight is zero?
]]>How can we get the total weight in emails?
]]>Hi
We had some complaints from some customers that the cart weight is not working properly.
After some tests, I think that the total cart weight does not show up the volumetric weight so this gives wrong results in orders that contain lightweight products with big dimensions.
We are using the most frequently calculation for volumetric weight that is
( L x W x H ) / Volumetric Number (5000)
Please help
]]>Hello Mr./Mrs.
Good day
Me and my team have translated Thai language for all your plugin
Pls fix plugin in Thai language for me soon
But if you are busy. Pls translate word “Total Weight” = ??????????
Regards,
Thank you
]]>When I choose the product and try to do the tests to check if the plugin is doing the calculation, the value does not appear in the check or the notification appears There is no delivery to your location
]]>How can I change the decimal shown in the cart collateral from ‘.’ to ‘,’? Thanks!
]]>Hello,
Thanks for the nice free plugin, it works outside of the box, showing the total cart weight on the checkout
Unfortunately, WPML detects no string to translate
Same for LocoTranslate, it detects no string to translate
Do you plan to make it compatible with those language tools ?
Kind regards
]]>How to make total weight shown before subtotal?
I mean what file can I customize?
Thank you in advance
Hello, I would like to get some help on showing the weight only from shopping cart products that belong to a specific class.
]]>We are helping a client who uses this plugin.
They are using a % for their products, rather than KG.
We can use Loco Translate to change KG or G to %, but it doesn’t seem to affect the suffix in Total Weight in the cart with this plugin.
While I can change Total Weight to anything within Loco Translate, I don’t seem to be able to change KG, to %.
How do we do this, even if it is in the code itselt?
Simon
]]>Hi i would like to add the weight for our packaging to total weight. So is possible to add a minimum weight of 300gr for example at total weight ?
]]>Hello,
I have fresh install of WP and WC, I installed plugin and activated it, but I dont find it on admin panel.
Hi,
I used the plugin “Cart Weight for WooCommerce” and works fine. Thanks.
I just have an issue on a part of the translation in the cart (top right).
I translated the POT file in French : the weight is well displaid but still written “Total Weight”.
On the other hand, in the Cart page, the sentence is well translated.
If you could help.
]]>Hello.
Please add a feature to translate weight unit (kg -> кг) and change decimal separator type (1.3 -> 1,3).
Thank you very much.
]]>Hello, I think that is awesome features.
1) Total Weight on order edit page before Total Price.
2) Update Total Weight meta on order page after edit and recalculate order.
Thank you!
]]>Hi,
Is it possible to have the plug-in show a truncated cart weight total without the decimals. As an example, I will frequently get weights displayed with very long decimals (i.e. 19.753125 lbs). How can I get the plugin to display only the whole number without the decimals (i.e. 19 lbs)?
There is a previous post about this fix, however, when I tried implementing this code into the plugin’s php file, it ended up crashing the checkout page. Is there another fix for this that would work?
Thank you!
]]>Hello,
i have problem with this plugin,
if the product have weight below 1kg, such as 0.4
and i try to order this product 2 pcs in one order, total weight show 0.0001kg, it should be 0.8kg. but if i try to order 3 pcs this product in one order, the total weight show 1.2kg. why should i do?
Thank you
]]>Hi,
Whether the plugin ‘WooCommerce Cart Weight’ is compatible with WordPress v5.2.2 and PHP v7.3. Kindly help us in this regard.
Thank you, have a nice day.
]]>Hi.
I really like this simple plugin, but there were a couple of changes I made to the php code to make it work correctly. One of the changes is the cause of the weight disappearing in mobile view.
I did these changes to the file woocommerce-cart-weight.php
Added the code here and added remarks on the changes, and you are free to use it if you like:
function wcw_plugin_load_plugin_textdomain() {
load_plugin_textdomain( 'woocommerce-cart-weight', FALSE, basename( dirname( __FILE__ ) ) . '/lang/' );
}
add_action( 'plugins_loaded', 'wcw_plugin_load_plugin_textdomain' );
/**
* Add Cart Weight to Cart and Checkout
*/
function wcw_cart() {
global $woocommerce;
if ( WC()->cart->needs_shipping() ) : ?>
<tr class="total-weight">
<th><?php _e( 'Total Weight', 'woocommerce-cart-weight' ); ?></th>
<!-- Added data-title to display correct label in cart & checkout, as this is used as label on mobile view by WooCommerce -->
<td data-title="<?php _e( 'Total Weight', 'woocommerce-cart-weight' ); ?>"><?php echo $woocommerce->cart->cart_contents_weight . ' ' . get_option( 'woocommerce_weight_unit' ); ?></td>
</tr>
<?php endif;
}
//add_action( 'woocommerce_cart_totals_after_order_total', 'wcw_cart' );
//add_action( 'woocommerce_review_order_after_order_total', 'wcw_cart' );
// Removed default actions and added new actions to display cart weight in connection with shipping method.
add_action( 'woocommerce_cart_totals_before_shipping', 'wcw_cart' );
add_action( 'woocommerce_review_order_before_shipping', 'wcw_cart' );
/**
* Add Cart Weight to Mini Cart
*/
function wcw_mini_cart() {
if ( WC()->cart->needs_shipping() ) : ?>
<p class="woocommerce-mini-cart__total total total-weight"><strong><?php echo __( 'Total Weight:', 'woocommerce-cart-weight' ); ?></strong> <?php echo WC()->cart->cart_contents_weight . ' ' . get_option( 'woocommerce_weight_unit' ); ?></p>
<?php endif;
}
add_action( 'woocommerce_widget_shopping_cart_before_buttons', 'wcw_mini_cart' );
Best regards,
Mikael
Hi.
Using Woocommerce Product Vendors, weight is not available in order details for vendors.
Hello, I would like to get some help on showing the total weight not only in the cart.
1) Is it possible that the total weight of an order could be shown in the “email – new order content?
2) and showing in the Woocommerce order’s dashboard also?
Because the shipping cost may be adjusted by the total weight, we need to know the total weight after the client place the order.
Hope these questions could be solved.
Thank you and have a NICE Day.
Hi,
The same thing happens to me as a chat partner who told them the same problem a year ago:
everything works like charm but when scale window to mobile and the cart change to more responsive view (which is all part of standard woocommerce install) the text “total weight” just disappear.
On laptop: “total weight: 2kg”
On mobile: “: 2kg”
I have spoken with the support of woocommerce (which is the theme that I am using) and they tell me that they are not at fault, that I communicate with you.
How to solve this bug?
Thank you
]]>