• Resolved zzbeck

    (@zzbeck)


    Hi!

    After the new 3.5 update, WooCommerce displays a radio button on cart and checkout when there is only one shipping method available. This doesn’t makes any sense, and wasn’t there before 3.5 update.

    Also, below the shipping selection in cart, it displays a text “Estimate for (XX) address”. How can I remove this? Doesn’t makes sense for me to include this, and there isn’t an option to hide it in the settings.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Same here. Besides this there’s also no shippings costs anymore on the cart page.

    Plugin Support Ross V. a11n

    (@rossviviano)

    Automattic Happiness Engineer

    Hi there, @zzbeck and @avz,

    I wasn’t able to replicate this issue on my test site – I’m not seeing any radio buttons when there’s only one shipping method. I’m also seeing the shipping charges show correctly on the cart and checkout pages.

    Screenshot

    Would you mind testing this out on a default theme like Twenty Seventeen? There were some template changes with the 3.5 update.

    https://github.com/woocommerce/woocommerce/blob/master/CHANGELOG.txt#L13

    Best,

    Ross

    Thanks. We downgraded to 4.7.
    Our theme (Shopkeeper) could be causing some of the issues. We’ll wait for an update.

    The estimated shipping costs on the shopping cart page were only visible when logged in. Personally I wouldn’t want this to show up. We have one kind of shipping costs, that’s all. I’ll wait for some updates.

    Thread Starter zzbeck

    (@zzbeck)

    Yeah, I was using the same theme.

    What about the estimate text on the cart page? Would it be possible to make this optional whether to display it or not? Don’t like it.

    I have found solution to remove “Estimated for” text from the cart page.

    Solved by this way

    /woocommerce/templates/cart/cart-shipping.php

    remove this code:

    			<?php if ( is_cart() ) : ?>
    				<p class="woocommerce-shipping-destination">
    					<?php
    					if ( $formatted_destination ) {
    						// Translators: $s shipping destination.
    						printf( esc_html__( 'Estimate for %s.', 'woocommerce' ) . ' ', '<strong>' . esc_html( $formatted_destination ) . '</strong>' );
    						$calculator_text = __( 'Change address', 'woocommerce' );
    					} else {
    						echo esc_html__( 'This is only an estimate. Prices will be updated during checkout.', 'woocommerce' );
    					}
    					?>
    				</p>
    			<?php endif; ?>

    Thanks! This will be fixed in 3.5.1. as well right?
    We have to wait it out ??

    Tobo

    (@infonetzlichtcom)

    The7 theme has the same problem. I disabled the shipping cost calculator and Shipping costs don’t show up anymore on cart page, if you are not logged in.

    Settings: “default shop address for customers” and unchecked “only show shipping costs if an adddress is entered..:”

    It worked before!

    • This reply was modified 6 years, 5 months ago by Tobo.
    Plugin Support Yuki K a11n.

    (@yukikatayama)

    Automattic Happiness Engineer

    Hi all,

    Doing some testing on my end, the “estimate shipping for xx address” should show up by default whether logged in or not.

    In regards to removing the “estimate shipping for xx address”, you can also add CSS:

    p.woocommerce-shipping-destination {
        display: NONE;
    }

    As far as requesting to have this as optional, I’d recommend adding it to our Ideas Board: https://ideas.woocommerce.com/forums/133476-woocommerce?category_id=36092

    If you’re having issues of seeing it not logged in and not seeing it while logged, or vise versa, I’d test for flushing cache and to do theme/plugin conflict testing (switch to Storefront and only have WooCommerce active) to find the culprit.

    Cheers,
    Yuki

    Hi Yuki,

    Maybe you can help us out with a different issue concerning the shipping costs. On our cart page the shipping costs disappeared. We used to show the amount we have to calculate for shipping but all of a sudden these prices are gone. On the checkout page the shippings costs are displayed.

    Could you maybe help out?

    Plugin Support Ross V. a11n

    (@rossviviano)

    Automattic Happiness Engineer

    Hi @avz,

    This was actually a little bug in WooCommerce 3.5. The fix will be released in 3.5.1, which will be out ASAP. You can follow along here: https://github.com/woocommerce/woocommerce/pull/21658

    Best,

    Ross

    Nice! Thank you.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘After 3.5 update: Showing shipping radio button’ is closed to new replies.