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 - 901 through 925 (of 1,174 total)
  • Author
    Posts
  • in reply to: Followers #112372

    Hi,

    Customer will be notified by mail.
    You can check the customer was receiving the mail or not using “WP Mail Logging by MailPoet” plugin(https://wordpress.org/plugins/wp-mail-logging/)

    Thanks.

    Hello,

    We have received your mail. Our tech team will revert back to you asap by mail.

    Thanks.

    You are welcome 🙂
    Do you want hide “category” section for vendor Or want to hide a “specific category” from vendor?

    Hello,

    add_filter( 'wcfm_product_fields_stock', 'wcfm_custom_wcfm_product_fields_stock', 150, 3 );
    function wcfm_custom_wcfm_product_fields_stock( $stock_fileds, $product_id, $product_type ) {
    	global $WCFM;
    	if( isset( $stock_fileds['sold_individually'] ) ) {
    		$stock_fileds['sold_individually']['dfvalue'] = 'enable';
    	}
    	return $stock_fileds;
    }
    //wcfm_product_fields_downloadable
    add_filter( 'wcfm_product_fields_downloadable', 'wcfm_custom_wcfm_product_fields_downloadable', 150, 3 );
    function wcfm_custom_wcfm_product_fields_downloadable($fields, $product_id, $product_type) {
    	$fields['download_limit']['value'] = 10; //Set your product download limit
    	$fields['download_expiry']['value'] = 2; //Set your product download expiry
    	return $fields;
    }
    add_filter('wcfm_product_manage_fields_pricing','custom_price_set',100,5);
    function custom_price_set($fields, $product_id, $product_type, $wcfm_is_translated_product, $wcfm_wpml_edit_disable_element) {
    	$fields['regular_price']['value'] = 100; //Set your product price
    	return $fields;
    }
    add_filter( 'body_class', function( $classes ) {
    	$userid = get_current_user_id();
    	if(wcfm_is_vendor($userid)) {
          $classes = array_merge( $classes, array( 'vendor-dashboard' ) );
    	}
    	return $classes;
    });

    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

    Add this below css to your activated theme’s style.css

    .vendor-dashboard .download_limit,.vendor-dashboard #download_limit,.vendor-dashboard .download_expiry,.vendor-dashboard #download_expiry,.vendor-dashboard .sold_individually,.vendor-dashboard #sold_individually,.vendor-dashboard #regular_price,.vendor-dashboard .regular_price {
    	display: none !important;
    }

    Thanks.

    Hi,

    add_filter('wcfmp_store_default_query_vars',function($tab,$vendor_id){
     global $WCFM, $WCFMmp,$wp;  
     if ($wp->query_vars['term_section'] || $wp->query_vars['s'] || get_query_var( $WCFMmp->wcfmmp_rewrite->store_endpoint('products') ) ) {
        return 'products';
      } else {
        return 'about';    
      }  
    },20,2);
    
    add_filter( 'wcfmmp_store_tabs', 'new_wcfmmp_store_tabs',90,2);
    function new_wcfmmp_store_tabs($store_tabs, $id) {  
       $new_store_tabs = array();
       $keyOrder = ['about','products','policies','followers','reviews'];
       foreach($keyOrder as $key) {
           $new_store_tabs[$key] = $store_tabs[$key];
       }    
       return array_filter($new_store_tabs);
    }
    
    add_filter( 'wcfmp_store_tabs_url', 'new_wcfmp_store_tabs_url',10,2);
    function new_wcfmp_store_tabs_url($store_tab_url, $tab) {
     switch( $tab ) {      
         case 'products':
           $store_tab_url = $store_tab_url.'products';
         break;      
       }
     return $store_tab_url;
    }
    
    add_action( 'wcfmmp_rewrite_rules_loaded', 'new_register_rule', 8 );
    function new_register_rule($wcfm_store_url) {
     global $WCFM, $WCFMmp;
     
     add_rewrite_rule( $wcfm_store_url.'/([^/]+)/'.$WCFMmp->wcfmmp_rewrite->store_endpoint('products').'?$', 'index.php?post_type=product&'.$wcfm_store_url.'=$matches[1]&'.$WCFMmp->wcfmmp_rewrite->store_endpoint('products').'=true', 'top' );
     add_rewrite_rule( $wcfm_store_url.'/([^/]+)/'.$WCFMmp->wcfmmp_rewrite->store_endpoint('products').'/page/?([0-9]{1,})/?$', 'index.php?post_type=product&'.$wcfm_store_url.'=$matches[1]&paged=$matches[2]&'.$WCFMmp->wcfmmp_rewrite->store_endpoint('products').'=true', 'top' );
    }
    
    function wcfm_vendor_profile_custom_endpoint() {
     global $WCFM, $WCFMmp,$WCFMu;
     add_rewrite_endpoint( 'products', EP_ROOT | EP_PAGES );
    }
    add_action( 'init', 'wcfm_vendor_profile_custom_endpoint' );

    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: Marketplace sending to account page! #112235

    Hello,

    Kindly check “WCFM page” is set or not in your site.(PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.

    Hello,

    It will take customization.
    Please contact us here for the purpose – https://wclovers.com/setup-guidance/ (with topic link)

    Thanks.

    in reply to: Minimum Withdraw Limit. Is it Euro's? #112130

    Hello,

    If my Woocommerce settings are in Euros
    Does this mean that the Minimum Withdraw Limit is € 5,00 in this image?

    >> Yes, that means Minimum Withdraw Limit is € 5,00

    Matured has different meanings in my language and I am trying to translate the plugin in my language
    >>Please use “Loco Translate (https://wordpress.org/plugins/loco-translate/)” plugin, translation will be very easy for you.
    Select the plugin Loco Translate -> Plugins -> “WCFM – WooCommerce Multivendor Marketplace” for changing text.

    Thanks.

    in reply to: Hide customer support and dashboard #111990

    Hello,

    add_filter('wcfm_is_allow_customer_support_settings','__return_false');
    add_filter('wcfm_is_allow_vendor_seo_facebook','__return_false');
    add_filter('wcfm_is_allow_vendor_seo_twitter','__return_false');

    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/

    Thanks.

    in reply to: add vendor's info in the Product list #111945

    Hello,

    Kindly modify your script,

    add_action('before_wcfmmp_sold_by_label_product_page','poner_universidad');
    function poner_universidad($store_id) {
    	$custom_fields = get_user_meta( $store_id, 'wcfmvm_custom_infos',true);
    	$field_name = 'Universidad en que estudiĂł';
    	echo $field_name.': '.$custom_fields;
    }

    Thanks.

    in reply to: Stores/Vendors selecting it's own payment methods #111929

    Hello,

    Unfortunately we don’t have this option because it will create confusion for the customer. Let’s say for example, you have vendor 1 and vendor 2, one is having a set payment gateway of paypal, and other Stripe. Now suppose a customer purchases items from both these vendors, then it will create confusion as in the customer will not know which payment gateway has to be choosen.
    Hope you understand the issue will happen for the above reason.

    Thanks.

    in reply to: Add Product Form Modification in the Store Dashboard #111925

    Hello,

    Regarding Brand, Can you share us the temporary admin access with your site url then we can check and guide you accordingly.

    Add Message Add product form,

    add_action('begin_wcfm_products_manage_form',function(){
    		//Add your Message
    });

    Add this code to your child theme’s functions.php

    Thanks.

    in reply to: Hide customer support and dashboard #111923

    Hello,

    add_filter('wcfm_is_allow_knowledgebase','fn_only_for_admin_wcfm_is_allow_knowledgebase');
    function fn_only_for_admin_wcfm_is_allow_knowledgebase($bool) {
    	$userid = get_current_user_id();
    	if(wcfm_is_vendor($userid)) {
    		return false;
    	} else {
    		return true;
    	}
    }
    add_filter('wcfm_is_allow_social_profile','__return_false');

    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/

    Thanks.

    in reply to: Add Product Form Modification in the Store Dashboard #111849

    Hi,

    To remove brand,
    add_filter( 'wcfm_is_allow_custom_taxonomy_store', '__return_false' );

    And remove Catalog Visibility sections, off the “catalog” capability settings. PFA

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Translations #111820

    Hi,

    Yes, That’s why choose the file location in Loco-Translate folder.(PFA)
    https://localise.biz/wordpress/plugin/beginners

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Add Product Form Modification in the Store Dashboard #111817

    Hello,

    To removing “Button Text” field from product add page,

    add_filter('wcfm_product_manage_fields_pricing','fn_wcfm_product_manage_fields_pricing',10 ,5);
    function fn_wcfm_product_manage_fields_pricing($fields,$product_id, $product_type, $wcfm_is_translated_product, $wcfm_wpml_edit_disable_element) {
    	unset($fields['button_text']);
    	return $fields;
    }

    Add this code to your child theme’s functions.php

    Thanks.

    in reply to: Removing Settings Tabs on Vendor's Dashboard #111816

    Hello,

    Can you share the images again. Your attached images were not uploaded.

    Thanks.

    in reply to: Translations #111807

    Hello,

    Yes If you update the plugins your created file will be removed. That’s why we suggest use Loco translate for translating text Or back-up your translated files and put them after update your plugins.

    Thanks.

    in reply to: Add text above vendor registration form? #111802

    Hello,

    To Add before “Registration” title, Then Add text before shortcode.PFA

    If you want add text just before form, then 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/

    add_action('begin_wcfm_membership_registration_form',function(){
    	echo '<p>new text</p>';
    });

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Vendor Approval Notification #111441

    Hello,

    After vendor registration admin get notification.
    For Vendor approval, You(admin) need to approve from WCFM Store Manager Dashboard -> Store Vendors (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Registration – Individual person & Vendor Company #111439

    Hi,

    You can change the font size(smaller), Try this css in your activated theme’s style.css

    #wcfm_menu .wcfm_menu_item span.text {
        font-size: 13px;
    }

    Thanks.

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

    Hello,

    Regarding customer support option, this customer have any order? Please check here : https://wclovers.com/knowledgebase/wcfm-support-ticket-module/

    Store vacation – This is under vendor manager -> store setting – > https://ibb.co/cyxm3e
    Live Chat – Please check here https://docs.wclovers.com/live-chat/
    Analytics – You need to install WOOCOMMERCE FRONTEND MANAGER – ANALYTICS . Check here – https://wclovers.com/knowledgebase/wcfm-analytics/

    Hope this will help you.

    Thanks.

    Hello,

    Regarding dot translate,
    What we can see it is a product taxonomy “Brand”. Kindly check if you have changed “brand”string in loco translate. We can’t check in your site back-end, because you have shared vendor access.

    Regarding Date format,
    Woocommerce coupon Date format can not be changeable.

    Regarding blue piece underneath Free Shipping,
    You have translated “Check this box if the coupon grants free shipping. The free shipping method must be enabled and be set to require “a valid free shipping coupon” (see the “Free Shipping Requires” setting).” with “” tag. Please remove the “” tag. You cannot add any HTML for translating text.

    Thanks.

    in reply to: Vendor store list and vendor page issue #111429

    Hello,

    For this you need to override “wcfmmp-view-store-lists-card.php” in your theme <your theme folder>/wcfm/store-lists/wcfmmp-view-store-lists-card.php. Then move the “Storename” after vendor logo.

    Thanks.

    in reply to: Hide fields in edit page. #111425

    Hi,

    .vendor-dashboard .wcfm_menu_toggler,.vendor-dashboard #wcfm_menu,.sub_checklist_toggler {
    	display: none;
    }

    Add this css to your child theme’s style.css

    add_filter('wcfm_wp_dropdown_categories_args','fn_wcfm_wp_dropdown_categories_args');
    function fn_wcfm_wp_dropdown_categories_args($args) {
    	$args['parent'] = 0;
    	return $args;
    }
    add_filter( 'body_class', function( $classes ) {
    	$userid = get_current_user_id();
    	if(wcfm_is_vendor($userid)) {
          $classes = array_merge( $classes, array( 'vendor-dashboard' ) );
    	}
    	return $classes;
    });

    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/

    Thanks.

Viewing 25 posts - 901 through 925 (of 1,174 total)