Questions tagged [shipping-method]

This tag is used in e-commerce essentially. A "shipping method" define basic shipping behaviors and allow some specific settings related to naming, conditional rates (pricing), and other additional settings.

Shipping Methods are used in e-commerce.

A "shipping method" has a basic specific shipping behavior and allow some specific settings related to naming, conditional rates and other additional settings.

Then each "shipping method" has specific shipping rules and shipping pricing defined for each Shipping Zone.

Additionally some Shipping methods handle Shipping classes that can be linked specifically to some products.

329 questions
0
votes
1 answer

Allow only Local Pickup for specific products outside specific Shipping Zone in WooCommerce

I have several products in the store, however one product (flammable) can only be shipped via a specific shipping company; Unfortunately that company can't reach the whole country. So in case the customer buys the flammable product and it's outside…
Edgar E.
  • 25
  • 2
  • 9
0
votes
1 answer

WooCommerce: Check if shipping of an order is free

I display an information about the needed amount for free shipping. Like: Add 10$ more to get free shipping That all works fine and is based on a fixed amount for the free shipping. My problem is now, that it will also show even if a coupon sets…
Cray
  • 5,307
  • 11
  • 70
  • 166
0
votes
1 answer

Increase Shipping cost per categories count found in WooCommerce cart

I'm trying to increase shipping cost based on number of categories in cart (count). So far I have this: add_filter( 'woocommerce_package_rates', 'vh_wc_shipping_costs', 20 ); function vh_wc_shipping_costs( $rates ) { $increase_cost = 50; …
0
votes
1 answer

Magento 2.3 shipping

I have developed a system using Magento 2.3 and now almost everything is done even the payment gateway. Now the last part I have to do is adding the shipping method and cost. My requirements are so simple and my requirements are, when an order is…
0
votes
1 answer

NetSuite Saved Search Result Is Blank

I tried to create a saved search to pull information from the "Shipping Method" field under Item Fulfillment; while the result is not showing any information even there is information under the "Shipping Method field". Please see the criteria and…
0
votes
2 answers

Display ALL available shipping methods for each specific order on admin edit order pages in Woocommerce

On the checkout page of my WooCommerce based site, users will have a list of shipping methods to choose from depending on what they are purchasing This is the list I want to capture: Things like “Free Shipping” for orders over a certain…
Dalton
  • 59
  • 9
0
votes
2 answers

Access country on woocommerce_cart_shipping_method_full_label filter

With the code below, I am able to change the display of specific shipping methods full labels on WooCommerce cart and checkout pages: add_filter( 'woocommerce_cart_shipping_method_full_label', 'custom_shipping_labels', 10000, 2 ); function…
Suneth Kalhara
  • 1,116
  • 4
  • 16
  • 40
0
votes
0 answers

Magento 2.3 Show Text with Shipping Option

I have created a shipping option and wanted text to show if that option was selected. Right now it displays below all of the shipping options and I want it to display with the method (not below all of them) if that method is…
stanhook
  • 63
  • 3
  • 12
0
votes
1 answer

Hide specific shipping method when Free Shipping is available in WooCommerce

I can find plenty of code snippets to hide other shipping options when free shipping available, or hide everything except Local Pickup. I want to hide everything except Local Pickup and a rate I set for Upgraded delivery (or in other words I want…
EHops
  • 47
  • 4
0
votes
1 answer

Woocommerce Shipping notification based on Geolocation

I would like the following code (or something close to it) to only apply if the customers geolocation is from the UK? I've tried a few different options but have been unable to get it working when I test from another country. function…
Mike Devitt
  • 115
  • 1
  • 6
0
votes
1 answer

How to get the lowest FLAT RATE shipping cost in WooCommerce

What I want is simple: I want to display the lowest flat rate shipping cost on a product page in WooCommerce so I can display: "We already deliver orders from € ...". It doesn't matter what shipping zone of customer country is active... I just need…
Yorlinq
  • 131
  • 14
0
votes
1 answer

Hide shipping methods for specific shipping classes in WooCommerce

In WooCommerce, I am hiding shipping methods based on different shipping classes in cart using "Hide shipping methods for specific shipping class in WooCommerce" answer code (the 2nd way), but the problem is that I use WPML plugin which manage 2…
user3158006
  • 37
  • 1
  • 9
0
votes
0 answers

Woocommerce shipping modifications required to support HTTP API shipping calcs

Woocommerce shipping calculations running too often. Woocommerce shipping setup works great until you build a custom shipping plugin that uses external quoting systems via HTTP API calls, at which point you realize that the shipping is calculated…
0
votes
1 answer

Set a shipping cost per line item in WooCommerce

There is the built in option for woocommerce shipping to set a fee for quantity of products in cart. There is also option for fee per shipping class. But I have thousands of products and need to charge a fee for each product(each product not qty of…
Joekom
  • 15
  • 7
0
votes
1 answer

Shopping Cart Estimate Tax Shipping - Issue with shipping totals collect

I use WebShopApps_MatrixRates module on Magento 2 site and module is configured with one delivery method for the region and two other delivery methods for some cities in that region. I've setup "Estimate Tax and Shipping" form on Cart Page to…