• Resolved fatninja07

    (@fatninja07)


    G’day Support,? ? ? ?
    I have installed Food Store Plugins on my website. I even have premium add ons installed . Everything was running smoothly but I didn’t realize it has issues with Woocommerce?Shipping.? ? ? ?
    I have different prices for delivery based on Google Miles . Now, the problem is even if I select? Delivery with Food Store plugins , in the checkout page it doesn’t show Woocommerce delivery shipping automatically . My Woocommerce?store is showing default shipping classes instead of Food Store services options.? ? ? ?
    Prior to your plugin I was using? https://foodonlineplugin.com/. And I didn’t had these kind of issues. However I liked the layout of your plugin , so I switched to you.
    Now my question is, can this issue be solved? Do you provide paid support to fix this issue? Or any other premium addons do I need to purchase please suggest.?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author WP Scripts

    (@wpscripts)

    Hello,

    Sorry for the inconveniences. We do have a plan for premium extension for advanced delivery and shipping options. But at this moment it’s not ready yet.

    Yes, we do provide paid support. Please contact us at [email protected] to discuss briefly on the issue and for paid support.

    Thanks & Regards,
    Team WP Scripts

    Dear friend,

    Did you fixed your issues. We need same kind of option for delivery ?

    Wish you great 2021

    Regards

    Julien

    Plugin Author WP Scripts

    (@wpscripts)

    Hello @ljconsulting

    As I mentioned in other thread, we are looking at another couple of weeks before this extension can be ready. We are facing some technical challenges for which its getting delayed. Hope you understand.

    Thanks & Regards,
    Team WP Scripts

    Ok great thanks good luck

    same here … that would be great

    You could use a workaround… add shipping costs based on delivery type. Add below code to your functions.php and check the checkout page when switching delivery type. If i got some more time a will also check for the popup cart. See it as temp solution until the extension is available.

    function wfs_shipping_service_type( $delivery_costs ) {
        $service_type = isset( $_COOKIE['service_type'] ) ? $_COOKIE['service_type'] : $this->default_type;
        if ( $service_type != 'delivery' ) {
          return false;
        } else {
          return $delivery_costs;
        }
    }
    add_filter( 'woocommerce_cart_ready_to_calc_shipping', 'wfs_shipping_service_type', 99 );
    Plugin Author WP Scripts

    (@wpscripts)

    Hello @fatninja07 @enricocs @robbert89 @ljconsulting

    Thank you for your support and patience. It’s been really a long time but we have released the small enhancement with version 1.3.11.

    With this version update, the local pickup will be selected when the Pickup service is chosen and the local pickup will be removed when delivery is chosen.

    Hope this will still be helpful to you guys.

    Regards,
    Team WP Scripts

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Urgent Help Needed For Shipping Issue’ is closed to new replies.