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 - 951 through 975 (of 1,046 total)
  • Author
    Posts
  • in reply to: how do i disable mp3 #98708
    Sushobhan
    Keymaster

    Hi,

    You can disable notification sound via settings. Go to Settings menu from admin dashboard, from there click on ‘Notification Manager’. You will find the settings ‘Notification Sound’ there, mark it OFF.

    Thanks!

    in reply to: How Remove Seo Step from Vendor Registration? #98694
    Sushobhan
    Keymaster

    Hello,
    I guess you are talking about vendor store setup wizard. In that case, you can use the following code snippet to achieve this-

    function remove_seo_tab($steps) {
        unset($steps['seo']);
        return $steps;
    }
    
    add_filter('wcfmmp_store_setup_steps', 'remove_seo_tab');

    Add this code 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/

    in reply to: My wcfm error css after insert shortcode in homepage #98227
    Sushobhan
    Keymaster

    Which theme are you using? Is it mentioned under our Compatible theme list (https://wclovers.com/wcfm-compatible-themes/)?

    in reply to: Get rid of "enquiry button" on product page view #98226
    Sushobhan
    Keymaster

    You can use ‘wcfm_is_allow_product_enquiry_bubtton’ filter and add your conditions. Refer to the sample snippet-

    function add_your_conditions_here(status) { //default status is true
        if(YOUR CONDITIONS) return false; //enquiry button will not show when false is returned
        return status;
    }
    add_filter('wcfm_is_allow_product_enquiry_bubtton', 'add_your_conditions_here');
    in reply to: 'ADD NEW PRODUCT' NOT WORKING #98217
    Sushobhan
    Keymaster

    Which theme are you using? Also, the product save is done via ajax. That means, if there is a JS error on the site, it will not work. Could you please check if there is any JavaScript error happening to the site from your Google Chrome Browser console (What is browser console – https://support.airtable.com/hc/en-us/articles/232313848-How-to-open-the-developer-console)

    in reply to: class=jvectormap-container issue? #98214
    Sushobhan
    Keymaster

    Hi we could not replicate the issue from our end. There should not be 2 ‘jvectormap-container’ div. Could you please share a temporary access details so that we can debug the issue. Also, please make sure to mark the reply as private.

    in reply to: Instalation of Booking marketplace #98212
    Sushobhan
    Keymaster

    First make sure you have WCFM Marketplace, WCFM Ultimate, and WooCommerce Bookings plugin installed and activated.

    Now, go to your admin dashboard and click on “Capability” menu and make sure “Bookable” option is on under Types section [ ref: https://ibb.co/FgjZwJL ]

    To create a bookable product from frontend you can refer to this tutorial https://wclovers.com/documentation/wcfm-wc-booking/ or YouTube video https://www.youtube.com/watch?v=PqSm6jO6bPY

    Let me know if you have any further queries.

    Thanks!

    in reply to: Vendor register form billing Company #97928
    Sushobhan
    Keymaster

    Could you please explain what you mean by “add regiter form meta “billing_company” text”?

    If you want to add any custom field in registration form, you can do so from Admin dashboard Settings->Vendor Registration, under Registration Form Custom Fields section. You can set this field mandatory as well.

    Alternately if you want a ‘billing_company’ post meta then you can do that as well using ‘wcfm_vendor_manage_profile_update’ action hook.

    in reply to: modify "wcfmmp_sold_by_labell" page #96676
    Sushobhan
    Keymaster

    You are always welcome 🙂

    Let me know if there’s anything else we can help you with.
    Can we ask for a favor? Would you mind taking a few minutes to review our plugin at https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.

    in reply to: Vendor login after #96278
    Sushobhan
    Keymaster

    You can use the following code –

    function redirect_vendor_to_homepage($redirect_to, $user) {
        if($user && in_array( 'wcfm_vendor', $user->roles ) ) return home_url();
        return $redirect_to;
    }
    add_filter( 'wcfm_login_redirect', 'redirect_vendor_to_homepage', 10, 2 );

    Add this code 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/

    in reply to: Shop visibility options #96270
    Sushobhan
    Keymaster

    You can do these things using Elementor. Gladly, both WooCommerce and WCFM supports it. Checkout https://youtu.be/F2gyAeZdU9s to learn more about it.

    in reply to: .woocommerce-loop-product__title #96269
    Sushobhan
    Keymaster

    Hi Glad you solve the issue. Did you discover the reason? It sounds like a style conflict with a plugin or theme.

    in reply to: Image Editor is not workin #96268
    Sushobhan
    Keymaster

    You can send the video to us via email (wclovers.contact@gmail.com). Also check in Google Chrome Browser console, is there any JavaScript error happening to the site or not! (What is browser console – https://support.airtable.com/hc/en-us/articles/232313848-How-to-open-the-developer-console)

    in reply to: Inquiries Tab message #96166
    Sushobhan
    Keymaster

    Then you can use ‘span.add_enquiry’ class to change the appearance of that button using css like the following-

    span.add_enquiry {
    background: blue; //use the color you want to use
    }

    Sushobhan
    Keymaster

    Create a shortcode like we did for vendor registration date and use it the same way.

    in reply to: Inquiries Tab message #95992
    Sushobhan
    Keymaster

    You can do that via css. Which one you want to change the one inside ‘Inquiries’ tab or the one after ‘Add to Cart’ button?

    in reply to: Long description / short description #95526
    Sushobhan
    Keymaster

    From your WCFM admin dashboard go to Settings->Product Custom Validation, under ‘Content’ section check ‘Excerpt’ and ‘Description’. See the image for reference https://ibb.co/Yyrwcc5

    in reply to: capability 'edit commissions' for managers #95096
    Sushobhan
    Keymaster

    Changing core files is not the recommended way to do any customization. Better remove the action and filters responsible for commission management after checking the user role –

    function remove_comission_for_managers() {
        global $WCFMmp;
        if ( wcfm_is_manager() ) {
            remove_action( 'after_wcfm_products_manage_tabs_content', array( $WCFMmp->wcfmmp_product, 'wcfmmp_product_commission' ), 500, 4 );
            remove_action( 'after_wcfm_products_manage_meta_save', array( $WCFMmp->wcfmmp_product, 'wcfmmp_product_commission_save' ), 500, 2 );
    
            // Variation Commission
            remove_filter( 'wcfm_product_manage_fields_variations', array( $WCFMmp->wcfmmp_product, 'wcfmmp_commission_fields_variations' ), 500, 7 );
            remove_filter( 'wcfm_variation_edit_data', array( $WCFMmp->wcfmmp_product, 'wcfmmp_commission_data_variations' ), 500, 3 );
            remove_filter( 'wcfm_product_variation_data_factory', array( $WCFMmp->wcfmmp_product, 'wcfmmp_product_variation_commission_save' ), 500, 5 );
        }
    }
    
    add_action( 'wcfm_init', 'remove_comission_for_managers', 20 );

    I’ll pass this to my development team and ask them to add one additional filter so that in future we can gracefully remove the ‘Commission’ tab without removing the ‘Store’ tab.

    Thanks!

    Sushobhan
    Keymaster

    Hi,
    If you want only the followers count of a vendor then you can use the following snippet –

    $followers_arr = get_user_meta( $vendor_id, '_wcfm_followers_list', true ); //fetch followers data from user_meta
    if( $followers_arr && is_array( $followers_arr ) ) {
    	$followers = count( $followers_arr ); //count of the followers
    }

    Thanks!

    in reply to: modify "wcfmmp_sold_by_labell" page #94376
    Sushobhan
    Keymaster

    You can use the following css to fix the menu list background.

    .sort-param > li:hover ul {
    background: #fff;
    }

    in reply to: modify "wcfmmp_sold_by_labell" page #94078
    Sushobhan
    Keymaster

    Hi,
    You can use the id of that tab element (#tab-title-wcfm_product_store_tab) and style it the way you like with css. For point 2, can you please explain what you mean by ‘The product selection fields cover the products.’? A screenshot with marking would be great.
    Thanks

    in reply to: how to prevent use of spam mails during registration #94070
    Sushobhan
    Keymaster

    Generally, we close a ticket once solved. We keep it open, till getting a confirmation from the user end. Though, sometime we may miss one or two.

    Your customization email will get answered asap, right now we are taking a look at the plugin. Please confirm if you want to close this thread! Thanks!

    in reply to: Email Templates for Shipping in WCFM Ultimate #93882
    Sushobhan
    Keymaster
    This reply has been marked as private.
    Sushobhan
    Keymaster

    Hello, There is no direct hook of filter to achieve this. You need to custom code it.

    in reply to: Email Templates for Shipping in WCFM Ultimate #93869
    Sushobhan
    Keymaster
    This reply has been marked as private.
Viewing 25 posts - 951 through 975 (of 1,046 total)