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 - 376 through 400 (of 1,046 total)
  • Author
    Posts
  • in reply to: default shipping rates by admin #127640
    Sushobhan
    Keymaster

    Yes, that will require paid customization. Or else, Admin has to manually assign those rates for all the vendors.
    Thank you!

    in reply to: Delete "wcfm-sell-items-catalog" #127639
    Sushobhan
    Keymaster
    This reply has been marked as private.
    in reply to: URL adresse web site vendor #127637
    Sushobhan
    Keymaster

    Sorry to give you trouble but I’ll require a vendor access as well!
    Thank You!

    in reply to: vendor settings #127636
    Sushobhan
    Keymaster

    Hi,
    If possible, please use a ftp to edit your functions.php. In you file all the " and ' gets changed to html entities like ". You need to fix this.
    Thank you!

    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    If the order contains items from multiple vendors then each vendor has to assign delivery person separately. Though each vendor can assign all the items to a single delivery person right from their order list screen (see here- https://imgur.com/HrhWb0a) and also from order details page (see here- https://imgur.com/JL6eIXg)
    Thank You!

    in reply to: Store Setup Customization Help #127619
    Sushobhan
    Keymaster

    Hi,
    If you want to completely remove store policy settings for vendors, go to WCFM admin dashboard >> Capability and uncheck Policies under Settings section. See here- https://imgur.com/sf647fo
    Now to set the store name as SEO title, add the following snippet to your child theme’s functions.php. In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/-

    add_filter( 'wcfm_vendors_settings_fields_seo', function($field, $vendor_id) {
        if ( wcfm_is_vendor( $vendor_id ) ) {
            $store_user = wcfmmp_get_store( $vendor_id );
            $shopname = $store_user->get_shop_name();
            if ( empty( $field['wcfmmp-seo-meta-title']['value'] ) && $shopname ) {
                $field['wcfmmp-seo-meta-title']['value'] = $shopname;
            }
        }
        return $field;
    }, 10, 2 );

    To add the text blow SEO step title use this following snippet-

    add_action( 'wp_enqueue_scripts', function() {
        if ( wcfm_is_vendor() && filter_input( INPUT_GET, 'store-setup' ) && filter_input( INPUT_GET, 'step' ) === 'seo' ) {
            wp_enqueue_script( 'seo_step_script', get_stylesheet_directory_uri() . '/custom.js', array( 'jquery' ) );
        }
    } );

    You’ll also require to create this custom.js file inside your child theme folder and paste the following code in it-

    jQuery( document ).ready( function ( $ ) {
        $( '<p class="seo_step_suggestion_text">If you don\'t know what to do just skip this step and you\'re good to go</p>' ).insertBefore( 'form' );
    } );

    Alternatively, you can use an existing JS file with some minor tweaking in this code.
    Let me know how this goes.
    Thanks!

    in reply to: Vender Shipment Zone not working (belgium) #127463
    Sushobhan
    Keymaster

    Hello,
    Zone doesn’t work that way. When you (admin) create multiple zones, you need to make sure that each zone is different by choosing different ‘Zone regions’. Also add them in order from specific to more generic, otherwise the first zone rules will always be implied.
    Please follow this thread to get more insights- https://wclovers.com/forums/topic/wild-cards-for-postal-codes-shipping-zones/
    Thank You!

    in reply to: Stripe and withdrawal #127460
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    To configure Stripe Split pay for vendor payment first go to Settings >> Payment and enable Stripe Split Pay. Please remember you will not need any other stripe plugin for taking customer payments. Payment setup documentation- https://docs.wclovers.com/vendor-payment/#stripe-split-pay
    Stripe split pay overrides your withdrawal settings. So you don’t need to set withdrawal automatic.
    I hope this answers your question.
    Thank You!

    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    By default, after logged in, vendors get redirected to their store manager page (dashboard). If it is not happening to your site, then there might be a plugin that is interfering with this behavior. Please test this after disabling all other plugins except WooCommerce and WCFM plugins.
    Let me know how it goes.
    Thank You!

    in reply to: Delivery time #127447
    Sushobhan
    Keymaster

    Hello,
    Right now we have only vendor delivery time slots. Means, vendor will set all the time slots and customer while purchasing can select from available slots. But I guess you want something similar for your delivery boys, where a delivery boy can set his/her availability. Am I right? Well, it’s not there yet.
    Thank You!

    in reply to: Delivery boy #127444
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    Admin can add delivery boys without assign them to a particular store. Then only admin can access and assign delivery orders to them. Your vendors can only access Delivery persons who are assigned to their store. If vendor adds a delivery person then that person automatically gets assigned to that store.

    Is possible to automaticcally assign a delivery for an order to delivery boy working on a specific area?

    As of now it’s not possible.

    Is possible to configure frontend manager for delivery boy using for example an android tablet to receive a push notification once he get a new delivery? Or he must check everytime on the notification page?

    You can use WCFM Delivery app for that purpose. Check here- https://play.google.com/store/apps/details?id=com.wcfmdelivery&hl=en

    Ah one thing… on my system once get a new notification he dosn’t have an alarm. I don’t know if on the normal case he must work but if not it could be a really good implement too

    Go to Settings >> Notification Manager and from there enable Notification Sound option.
    Thank You!

    in reply to: Delivery boy #127441
    Sushobhan
    Keymaster

    Hi,
    First checkout the documentation from here- https://wclovers.com/knowledgebase/wcfm-marketplace-delivery/
    If you have further questions, you can ask here.
    Thank You 🙂

    Sushobhan
    Keymaster
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    Well, this feature is already supported. Check here- https://imgur.com/aWpSB9e
    Thank You!

    in reply to: Free shipping label #127436
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    As you might have figure out, there is no ready made option for this but can be achieved via customization. On product add to cart action we can add that notice checking the current cart item and corresponding vendor free shipping rules.
    If interested you can contact us here- https://wclovers.com/setup-guidance/
    Thanks!

    in reply to: Can I limit visibility on Shipping Classes? #127434
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    Sorry, we missed attending your last topic. I’ve posted my replies in your original topic – https://wclovers.com/forums/topic/vendors-need-the-ability-to-override-global-shipping-costs-per-product/
    Being a WooCommerce based marketplace solution, there are few things that aren’t totally in our control. Still, WCFM is the only WooCommerce marketplace plugin that provides Zone based, Country based, Weight based, and Distance based shipping setup.
    Thank You!

    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    My replies are inline-

    1: The vendor can only choose 1 class per product and they need the ability to apply 2 or 3 classes to the products;

    Well, WoCommerce doesn’t support that.

    2: I don’t want other vendors to see those classes.

    Right now there is no in-built settings to restrict usage of shipping classes. But it can be achieved via customization, so that during vendor registration approval we can add a shipping class related to vendor store name. Which will be only available to that vendor.

    I want the vendors to have the ability to set their own Zones, methods within their own Zones, and Classes within their own methods.

    This is not possible as well due to WooCommerce restriction. Only admin can create zones.
    Looking forward to helping you.
    Thank You!

    in reply to: can\'t activate ultimate #127399
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    To activate Ultimate license, go to wp-admin dashboard >> WCFM License, input your API License Key and API License email(both these details you will find in your order confirmation email.) and Save. This will activate your licence.
    If you find any issue you can write to us here- wclovers.contact@gmail.com (mentioning the forum support link).
    Thank you!

    in reply to: I'm totally confused #127391
    Sushobhan
    Keymaster

    Hello,
    If you are confused with some booking setup, then I’ll request you to contact to which ever booking plugin you are using. Then will guide you better on this. WCFM Ultimate just provides the compatibility.
    Thank You!

    in reply to: Should I update woo-commerce to 4.1.0 ? #127388
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    From WooCommerce development log, there shouldn’t be a problem. But still, I’ll request you to wait for a few days, as we are now testing this version.
    Thank You!

    in reply to: Local pickup instead of delivery? #127377
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    WCFM Delivery addon supports delivery timeslot feature. Read more about this here- https://docs.wclovers.com/delivery-time/
    Thank You!

    in reply to: Once buy for customers. #127362
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    Sorry, I couldn’t fully understand your query. If I’m correct, you want to sell your products (virtual items) only once. You can achieve this by configuring it’s inventory. Go to Inventory tab and from there enable Manage stock?. Set Stock quantity as 1 and Allow backorders? to ‘Do not allow’. Ref: https://imgur.com/0Gl8WuW
    Looking forward to helping you.
    Thank You!

    in reply to: Translate notice Single Vendor Checkout #127333
    Sushobhan
    Keymaster
    This reply has been marked as private.
    in reply to: Shipping deactivates itself #127313
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    It might be due to a conflict with another plugin or some custom code (more probable cause). To debug this, first disable all your custom code.
    If you make your changes via child themes functions.php, then changing theme, temporarily, is a easy way to do so. If you use a code snippet plugin then disable it.
    If the problem persists, then you can check this with only WooCommerce and WCFM plugins activated.
    Let me know how it goes.
    Thank You!

    in reply to: Geo location for product not working #127306
    Sushobhan
    Keymaster

    Hi,
    Thanks for getting in touch with us!
    Yes, you are right! All products uses location of their vendor store. If you want to set different location for each product then you will need to use Geo my WP plugin. Also, you will require to add a search form, as GEO my WP doesn’t work with your default store search. Follow this tutorial to get the idea – http://docsdep.geomywp.com/create-a-search-form/
    I hope this answers your question.
    Thank You

Viewing 25 posts - 376 through 400 (of 1,046 total)