Home Forums WoodMart support forum Free shipping order value above issue

Free shipping order value above issue

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #399075

    techsche
    Participant

    free shipping order value above 499 is free else its 50 Rupes. but when the cart total value above 499 free shipping enabled but still showing 50 rupees class.

    please refer the below screenshots.

    Attachments:
    You must be logged in to view attached files.
    #399191

    techsche
    Participant

    Good day ,

    issue fixed .

    using below reference https://woocommerce.com/document/setting-up-shipping-zones/

    Snippet: Only show free shipping if available

    Note: We are unable to provide support for customizations under our Support Policy. If you are unfamiliar with code/templates and resolving potential conflicts, contact a WooExpert.
    By default, all methods in a zone are presented to the customer. If you have conditional free shipping and want it to be the only shown method if it’s available, you can use the following snippet to hide other methods:

    <?php
    /**
    * Hide shipping rates when free shipping is available.
    * Updated to support WooCommerce 2.6 Shipping Zones.
    *
    * @param array $rates Array of rates found for the package.
    * @return array
    */
    function my_hide_shipping_when_free_is_available( $rates ) {
    $free = array();

    foreach ( $rates as $rate_id => $rate ) {
    if ( ‘free_shipping’ === $rate->method_id ) {
    $free[ $rate_id ] = $rate;
    break;
    }
    }

    return ! empty( $free ) ? $free : $rates;
    }

    add_filter( ‘woocommerce_package_rates’, ‘my_hide_shipping_when_free_is_available’, 100 );

    #399240

    Luke Nielsen
    Keymaster

    Hello,

    Glad that you managed to sort this out.

    If there’s anything you need, please write me or another member of our help desk team.

    We’re here for you!

    Kind Regards

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Free shipping order value above issue’ is closed to new replies.