WC Lovers

WooCommerce Frontend Manager - Multivendor marketplace vendor dashboard

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Forum Replies Created

Viewing 25 posts - 201 through 225 (of 243 total)
  • Author
    Posts
  • in reply to: Free Shipping Coupon + Country Wise Shipping #37309
    Sayan Naskar
    Keymaster

    Oh! I got your question now!Coupon support is not currently present in shipping modules. We will implement it in the near future updates.

    Thank You.

    in reply to: Bank Transfer Confirmation Form #37270
    Sayan Naskar
    Keymaster

    Hi,
    Please remove the previous code and add the code in the file shared below.

    File Link: https://drive.google.com/open?id=1yewOjE7MgK2D-kVnEyPafa1BcKmSanaq

    Thanks,

    in reply to: Free Shipping Coupon + Country Wise Shipping #37182
    Sayan Naskar
    Keymaster

    Hello,
    The multiple shipping methods for one zone is applicable for only zone-wise shipping so it is also applicable to zone-wise shipping only.
    Shipping by country only supports one flat rate for each country/state.

    Thank You.

    in reply to: Shipping by City. #37175
    Sayan Naskar
    Keymaster

    Hello,
    Have you added the code?

    add_filter('wcfmmp_city_select_dropdown_enabled', '__return_true' );

    Moreover, the city restriction works only for shipping by zone. Please find attached screenshot.

    Thank You.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Vendor Shipping Classes #37060
    Sayan Naskar
    Keymaster

    So even if Shipping by Country is enabled and “overwrite Shipping” box is checked with a new value is inputted it still defaults to the admin “flat rate shipping” if that is cheaper (in my case $0). I want to get that fixed.
    >> No, Admin Shipping Rates are only visible to the customer when vendor shipping is not present. Or shipping is not activated for the admin.

    Also, is there anyway to set different shipping rates on different variations of products? I’m selling paintings and a lot of the artists sell the larger originals (Can be very large) and prints (8″x10″, 10″x12″, etc.), so here for the different rates, it will take different costs to ship them.

    >>You can set different shipping classes for each variation. Then in zone-wise shipping different rates for different shipping classes can be set.

    Sayan Naskar
    Keymaster

    Hello,
    Yes, there is a filter to solve the purpose.
    Just enter the code below in the child theme’s function.php file and other shipping methods will be hidden if free shipping is available.


    add_filter( 'hide_other_shipping_if_free', '__return_true' );

    Thank You.

    Sayan Naskar
    Keymaster

    Hello,
    For this functionality, you must use Zone Wise Shipping for the vendor. Now for the zone for which the vendor wants to set FREE SHIPPING ON ORDERS OVER SET ‘VALUE’, They must add “free shipping” method and for free shipping “Minimum order amount for free shipping” to the amount above which they want free shipping. They also need to add the “Flat Rate” method for the cost below free shipping.
    Please find attached screenshot.

    Thank You.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Shipping by City. #36096
    Sayan Naskar
    Keymaster

    Hello,
    Shipping based on cities support is already added in the WCFM Marketplace.
    To add City Support You need to install the plugin WC City Select ( https://wordpress.org/plugins/wc-city-select/ ) Use the method of associating cities with the states of your country to add the cities you want (It is mentioned in the plugin description page). This will add city Support to Woocomerce.

    Now to enable city support in WCfMmp you need to add the following line in the child themes function.php or in the code snippet plugin.:

    add_filter(‘wcfmmp_city_select_dropdown_enabled’, ‘__return_true’ );

    Again as this is a user-specific requirement we have made this filter based, so you need to enable this feature.

    Thank You.

    Sayan Naskar
    Keymaster

    Hello,
    The request has been implemented in the previous update.
    But as it is a site-specific requirement and some of our clients are using the previous module, we implemented the algorithm you mentioned as optional (or rather filter based )
    To turn on the module you need to add a line of code in your child theme’s function.php file or in the code snippet plugin. If you want we can add the code to your site as well.

    add_filter(‘hide_country_shiping_default_zero_cost’, ‘__return_true’);

    Thank You.

    Sayan Naskar
    Keymaster

    Sure, let us know.

    Thank You.

    Sayan Naskar
    Keymaster

    Hello,
    Followed the steps you mentioned created a new vendor wcfm_test and followed the other steps but couldn’t replicate the issue.
    Attaching a screenshot of the order details page of the order created which shows the shipping fee please check.
    The test vendor access details.
    username: wcfm_test
    password: wcfm_test

    If the problem persists can you please send a screen recording of the issue?

    Thank You

    Attachments:
    You must be logged in to view attached files.
    in reply to: Hiding Local Pickup on Vendor shipping options #35395
    Sayan Naskar
    Keymaster

    Hello,

    The above code should work fine to remove the local_pickup option for the vendor. Have you added the code in child theme’s function.php file or anywhere else?

    Thank You.

    in reply to: Vendor Shipping Classes #35389
    Sayan Naskar
    Keymaster

    Hello,

    WCFM MARKETPLACE has 2 types of shipping options for the vendors.

    1. Shipping By Zone:
    In this shipping type admin can set shipping zones, Shipping Classes to be available for the vendors. Vendors can set different shipping methods( Flatrate / local pickup / free shipping ) for the shipping zones as per their requirements. The can also choose shipping classes to each product and set different costs for each shipping classes.
    So for your question, ” if on the admin side there were no shipping classes setup, from the vendor side when listing a product the only option would be “no shipping class”
    >>> Yes, if the admin does not set any shipping class the vendor will not get any shipping class option ( Shipping Classes works with Zone wise shipping )

    2. Shipping By Country:
    >> In this shipping type. The vendors have the flexibility to choose different costs per country or per state as they wish. But the Shipping class concept is not available in this type of shipping. “overwrite Shipping if that box was checked” works in this type of shipping. Where the default extra costs in the shipping by country are overwritten per product.

    Thank You.

    in reply to: We need an important function in the shipments #34916
    Sayan Naskar
    Keymaster

    Hello,
    Woocomerce by default doesn’t support weight based shipping cost calculation. It can be achieved by shipping class in products but according to your requirement, you are looking to calculate the shipping cost of all the products together adding the weight of all the products together, this will be a custom development work. I guess you are looking to calculate this costs vendor specific ie weights of all the products of each of the vendors will be added separately and the cost will be calculated separately for each vendor right? Moreover, will the vendors be able to set their own weight based cost?
    Thank You.

    Sayan Naskar
    Keymaster

    Hello,
    We will implement the changes in the next updates.

    Thank You.

    Sayan Naskar
    Keymaster

    Hello,
    Can you send an email in wclovers.contact@gmail.com we will send the screenshots over the email in that case. I think it will be easier that way.
    Thank You.
    Sayan.

    Sayan Naskar
    Keymaster

    Hello,
    I have removed the post from private. Please check and change the vendor password as soon as possible.
    Thank you.

    Sayan Naskar
    Keymaster

    Hello,
    I have set up Zone shipping for the vendor SandyBee ( To access vendor dashboard I needed to change the password of the vendor – the new password is: 07!f1WO(ey1z8j*XlEx5GFKq ). Please change the password.
    I have set up shipping for the vendor with demo costs for the France zone – Flat rate shipping with shipping classes. in the admin settings ( in the zone settings ) Store shipping must be set for the zone to be visible in the vendor settings.
    Attaching screenshots for the process.

    Thank You.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Rating Stars CSS issue #32966
    Sayan Naskar
    Keymaster

    Hi,
    I have included the CSS fix for the star rating. Please check.

    Thank You.

    in reply to: About Shipping Class Cost setting #32965
    Sayan Naskar
    Keymaster

    Hello, It is the new feature added in the latest version.
    If the admin sets shipping classes in WooCommerce -> Settings -> Shipping -> Shipping classes
    The Shipping classes will be visible for the vendors in the flat rate shipping. They can set shipping extra cost for each class which is set by the admin.
    You can view documentation of the shipping classes also from this link https://wclovers.com/knowledgebase/wcfm-marketplace-store-shipping/

    in reply to: Theme Add to cart animation failure due to WCFM installation #32840
    Sayan Naskar
    Keymaster

    Hello,
    We have checked the site, for further examination it will be great if you can share a temporary admin access of the site.
    Also please confirm if we can decativate the plugin for testing perpouse.
    Thank You

    in reply to: Vendor name under products #32653
    Sayan Naskar
    Keymaster

    Hello,
    We have added the Inquiry button in the single product page. But due to an error in the console from one of the plugins and total change in the default templates of woocommerce by the theme the default functionality of the inquiry button is not working. Please contact the plugin author for fixing the js error in the console so that we can implement the default functionality of the button compatible with the theme.

    Thank You

    Attachments:
    You must be logged in to view attached files.
    in reply to: Vendor name under products #32595
    Sayan Naskar
    Keymaster

    Hello,
    Thank you for the appreciation. Please reach out if you need any more assistance.

    in reply to: Vendor name under products #32586
    Sayan Naskar
    Keymaster

    Hello,

    We have included the vendor’s name in the single product page please check: http://buysellbooks.online/product/testing/
    But as there was no child theme present in the site we have edited the parent theme file. /wp-content/themes/book-junky/woocommerce/content-single-product.php

    Attachments:
    You must be logged in to view attached files.
    in reply to: Shipping cost #32486
    Sayan Naskar
    Keymaster

    Hello,
    If the vendor turns on free shipping and sets min order amount to be 100 for the vendor to get free shipping, the customers will be hinted how much more to buy from the vendor to get free shipping from the particular vendor if the cart amount is less than 100 for the particular vendor. Screenshot attached.

    Thank You.

    Attachments:
    You must be logged in to view attached files.
Viewing 25 posts - 201 through 225 (of 243 total)