• Resolved dantemasamune

    (@dantemasamune)


    I have Shipping: Delivery in the Checkout Review order. But I need the Delivery text to be different than just the name of the shipping method to describe the service. How can I change the text?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter dantemasamune

    (@dantemasamune)

    Bump. I just need to change the Shipping method value for a string of text.

    Hello,

    If you are trying to change the name of the shipping method, you can change the Method title in WooCommerce > Settings > Shipping > Shipping Zones > [Your Shipping Zone]

    Link to image: https://snipboard.io/m0Zfun.jpg

    Thread Starter dantemasamune

    (@dantemasamune)

    I’m trying to change only the text inside the review order in checkout, but the name to stay like it is, also is there a way to make zip code not a required field? Thank you for your answer

    Thread Starter dantemasamune

    (@dantemasamune)

    I tried using this code for removing the zip code required but it’s not working.
    I’m using OceanWP theme

    // Make zip/postcode field optional
    add_filter( 'woocommerce_default_address_fields' , 'QuadLayers_optional_postcode_checkout' );
    function QuadLayers_optional_postcode_checkout( $p_fields ) {
    $p_fields['postcode']['required'] = false;
    return $p_fields;
    }

    @dantemasamune

    To disable WooCommerce postcode validation, I recommend following the guide provided here

    Regarding the text you want to change at checkout, kindly provide a screenshot of that here using https://imgbb.com

    Hi @dantemasamune

    We’ve not heard back from you in a while, so I’m marking this thread as resolved. If you have further questions, please feel free to open a new topic.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to replace Shipping Value inside Checkout Review Order’ is closed to new replies.