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 - 851 through 875 (of 1,174 total)
  • Author
    Posts
  • in reply to: Tag limit #115289

    Hi,

    Add the below code n your activated theme’s functions.php
    add_filter('wcfm_is_tags_input','__return_false');

    And add the below script in your theme’s js file,

    jQuery(document).ready(function ($) {
        $('.product_tags_as_dropdown').select2({
            maximumSelectionLength: 2  //replace with your tag limit
        });
        $('.product_tags_as_dropdown').select2('reload');   
    });

    Thanks.

    in reply to: Tag limit #115085

    Hello,

    Sorry we don’t have this feature.

    Thank You.

    in reply to: remove 'top freebies' from Reports #115074

    Hello,

    .chart-sidebar h4.section_title:nth-child(5) {
        display: none;
    }

    Try this css in your activated theme’s style.css.

    Thanks.

    in reply to: Show Vendor Terms & Condition in Checkout #115071

    Hello,

    We understand your requirement. It will need customization work. please contact us here(with topic link) : https://wclovers.com/setup-guidance/

    Thanks.

    in reply to: Show Vendor Terms & Condition in Checkout #115028

    Hello,

    What we understand that, you want a checkbox with with vendor’s term&condition, during customer checkout process. Please confirm.
    And another question is, what will happened if customer have different vendor’s product in one order/during checkout, then which term and condition will be display?

    Thanks.

    in reply to: Search bar Zip Code #115024

    Hello,

    Do you want a “zipcode” search field n your homepage, and after submitting the search button it will go to the “store lists” page & filtered by the “zipcode”?
    As these will be customization works. Please contact us here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/

    Thanks.

    in reply to: hide wcfm_products_filter_wrap wcfm_filters_wrap #115017

    Hello,

    add_filter('wcfm_capability_settings_fields_settings_inside','fn_wcfm_capability_settings_fields_product_filter_hide',10,2);
    function fn_wcfm_capability_settings_fields_product_filter_hide($setting) {
    	global $wp, $WCFM, $WCFMu, $WCFMgs, $wcfmgs_capability_manager_options;	
    	$product_search_hide = ( !empty( $wcfmgs_capability_manager_options['product_search_hide'] ) ) ? $wcfmgs_capability_manager_options['product_search_hide'] : '';	
    	$setting['product_search_hide'] = array('label' => __('Product Filter', 'wc-frontend-manager-ultimate') , 'name' => 'wcfmgs_capability_manager_options[product_search_hide]','type' => 'checkboxoffon', 'class' => 'wcfm-checkbox wcfm_ele', 'value' => 'yes', 'label_class' => 'wcfm_title checkbox_title', 'dfvalue' => $product_search_hide);
    	return $setting;
    }
    add_filter( 'wcfm_is_allow_bulk_edit','wcfm_product_filter_by_group');
    add_filter( 'wcfm_is_products_custom_taxonomy_filter','wcfm_product_filter_by_group');
    add_filter( 'wcfm_is_products_type_filter','wcfm_product_filter_by_group');
    add_filter( 'wcfm_is_products_vendor_filter','wcfm_product_filter_by_group');
    add_filter( 'wcfm_is_products_taxonomy_filter','wcfm_product_filter_by_group');
    function wcfm_product_filter_by_group($bool){
    	global $wp, $WCFM, $WCFMu, $WCFMgs, $wcfmgs_capability_manager_options,$wcfm_capability;
    	$current_user_id = apply_filters( 'wcfm_current_vendor_id', get_current_user_id() );
     	$current_plan = wcfm_get_membership();
     	if(isset($current_plan)) {
    		$current_group = get_post_meta($current_plan,'associated_group',true);
    		$group_capability_options = get_post_meta($current_group,'_group_capability_options',true);
    	}	
    	$product_search_hide = ( isset( $group_capability_options['product_search_hide'] ) ) ? $group_capability_options['product_search_hide'] : '';
    	if($product_search_hide != '') {
    		$bool = false;
    	}
    	return $bool;
    }

    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/

    And set the capability for each group.(PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Store list is empty for guests, not for connected users #115008

    Hello,

    Please share us your site details, we need to check your site.( Set as private reply)
    Just check once, activate default wordpress theme and activate only woocommerce, our WCFM plugins, and still site have the same issue or not.

    Thanks.

    in reply to: Group and staff error #115005

    Hi,

    Ok, Please share us your site details with site Url(Set as private reply), we need to check your site.

    Thanks.

    in reply to: Enable order actions from within order details #114790

    Hello,

    Please update our WCFM plugins, we have that feature in order details page for vendor where vendor can completed his order. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Woocommerce booking and acf repeater field #114785

    Hello,

    Regarding ACF Repeater field support in our plugin, it is in our road-map. And once it is done will provide the update.

    Thanks.

    in reply to: No option to create support ticket from my account #114763

    Hello,

    As of now we don’t have this feature.

    Thank You.

    in reply to: Product list only one column on a store page #114759

    Hello,

    Your theme style is overriding the woocommerce and WCFM plugin style.

    .woocommerce .products .product, .woocommerce-page .products .product{
        display: inline-block;
        vertical-align: top;
    }
    .wcfmmp-store-page-wrap .products.owl-carousel {
        display: inline-block;
    }

    Add this css in your activated theme’s style.css

    Thanks.

    in reply to: Group and staff error #114712

    Hello,

    Kindly check the “Group Store” field is blank or not in your “Group” and remove all store in your Group Store”” field and save again(PFA).

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Formatting help #114707

    Hello,

    1. Vendor store page,
    >>You can add your custom css in elementor template “custom css” section (PFA).

    2. Membership plans,
    >> Browse the “vendor membership” page(which contain “[wcfm_vendor_membership]” shortcode), and in each membership plan unchecked the “Hide from Plan Table” (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Cant remove Vendors Store Page Sidebar. #114705

    Hello,

    Are you using elementor template for vendor store page? Or have you override vendor store template in your theme? Please check once.

    Thanks.

    Hello,

    add_filter( 'wcfm_is_allow_store_name', '__return_false' );

    Try 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/

    Thanks.

    in reply to: partial refund by item #114673

    Hello,

    Your issue is not so clear. What we understand that the issue regarding affiliate commission refund.
    Just to inform you,
    In case the commission is received by the affiliate beforehand by the admin, ( That is before the refund request is placed by the customer), then the amount WILL NOT be automatically refunded ( or credited) to affiliates’s account. It has to handled manually.

    Thanks.

    in reply to: No option to create support ticket from my account #114654

    Hello,

    Sorry, Your invoice issue is not clear and You have missed to attach the file.
    Regarding Store Invoice please check : https://wclovers.com/knowledgebase/wcfm-store-invoice/

    Thanks.

    in reply to: My Site is Broken Registration Page #114235

    Hello,

    Can you tell us which plugin are you using for vendor registration?
    Can we know why you are not using our WCFM vendor registration page?

    Thanks.

    in reply to: partial refund by item #114214

    Hello,

    Please update our WCFM plugings in your site and set the “Store Refund Settings” by admin, then you can see the popup where customer can make refund request by item (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Require code for edit profile?? #114211

    Hi,

    You may disable vendor verification form WCfM Admin Settings -> Modules

    Email verification can be disable using this –
    add_filter( 'wcfm_is_allow_email_verification', '__return_false' );

    Thanks.

    in reply to: vendor registration #114206

    Hello,

    For start with membership plan, please start vendor registration with this page : https://greenecommons.com/vendor-membership/
    And set the “Subscription First Step” in membership settings.

    Thanks.

    in reply to: Changing the word "vendor" to "seller" #114114

    Hello,

    We found that the justsneakers” have no products, We created a product and assign the vendor “justsneakers”. Please check the product (PFA), “sellers name” is showing.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Min/Max Quantities for Vendor-created Product #113643

    Hi,

    It seems like you are using our “WCFM – Frontend Manager for WooCommerce” free version.
    For “WooCommerce Min/Max Quantities” feature you need to install our premium version of WCFM-ultimate plugin (https://wclovers.com/product/woocommerce-frontend-manager-ultimate/)

    Thanks.

Viewing 25 posts - 851 through 875 (of 1,174 total)