jstander
Forum Replies Created
-
“Shipping by Distance” option from WCFM Admin Setting – Shipping Setting is disabled.
I only have “Store shipping” and “shipping by zone” enabled.
The only was i was fix this issue by adding the custom code.any other feedback you can provide?
Still not sure why the shipping destination shows up when I only have local pickup configured for zone delivery, but here is what i did to remove “Shipping to <destination>” from cart page
Go to Appearance → Customize → Additional CSS, and then in the CSS textbox on the left, add the following code:
.woocommerce-cart .woocommerce-shipping-destination { display: none; }
Save changes and publish.
FYI, I already had “Enable the shipping calculator on the cart page” disabled under WooCommerce shipping options, and this text still appeared, but make sure this is disabled as well.
This seems to related to the following:
<ul id=”shipping_method” class=”woocommerce-shipping-methods”>
- <input type=”hidden” name=”shipping_method[2]” data-index=”2″ id=”shipping_method_2_local_pickup10″ value=”local_pickup:10″ class=”shipping_method”><label for=”shipping_method_2_local_pickup10″>Local Pickup ()</label>
<p class=”woocommerce-shipping-destination”>
Shipping to CA.
</p>