Home Forums WC Vendors Pro Support Vendor Shipping

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #69602
    misiak007
    Participant

    Hi, I need to hide some fields from dashboard – settings – shipping (in attachment).
    How can I do it?

    thank you

    regards
    Michal

    #69605
    misiak007
    Participant

    Hi, I made some changes in woocommerce – wc vendors – settings form (attachment), but not all fields are disabled.
    these fields are still showing:
    Minimum shipping charged per order
    Maximum shipping charged per order
    Free shipping order
    Maximum product charge

    and for fields:
    Free national shipping.
    Free international shipping.
    Charge once per product for national shipping, even if more than one is purchased.
    Charge once per product for international shipping, even if more than one is purchased.
    Disable national shipping.
    Disable international shipping.

    I can not find any settings.

    Thank you for helping me

    regards

    Michal

    #69965
    misiak007
    Participant

    Hello? 5 Days no answer?
    is this really pro support?

    #70020
    Anna
    Member

    @misiak007
    Hello,
    The first set of fields you are trying to hide:

    Minimum shipping charged per order
    Maximum shipping charged per order
    Free shipping order
    Maximum product charge

    Those are able to be hidden now using the settings — there was a bug that was fixed for version 1.4.4 of Pro. So if you update, those fields should be able to be hidden using the settings in admin.

    For the other fields, you should be able to achieve that with this code placed in your child theme functions.php file:
    https://gist.github.com/fervous/a0602993f36b82b334bd2b80a6eb9be5

    #70043
    misiak007
    Participant

    thank you Anna
    everything is working fine.
    regards
    Michal

    #70211
    Malavika Gupta
    Participant

    Hi Anna,

    Do you by chance have the code to hide these shipping fields from Add Product Form also. I am more about ‘Disable national shipping for this product’ and ‘Disable international shipping for this product’

    Thank you

    #70213
    Malavika Gupta
    Participant

    When I did the below code to hide ‘Disable National Shipping’ and ‘Disable International Shipping’ from the Store Shipping Settings, the ‘Default National Shipping Fee’ and ‘Default International Shipping Fee’ also gets disabled. When you view any of the Products of the Store, the Default shipping do not show and the Checkout gives a message ‘There are no shipping methods available’.

    /* hides shipping fields from the vendor settings form */
    add_filter (‘wcv_shipping_international_disable’, ‘wcv_hide_field’);
    add_filter (‘wcv_shipping_national_disable’, ‘wcv_hide_field’);

    function wcv_hide_field ($args) {
    $args[ ‘type’ ] = ‘hidden’;
    $args[ ‘show_label’ ] = false;
    return $args;
    }

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘WC Vendors Pro Support’ is closed to new topics and replies.