Forum Replies Created
- AuthorPosts
Sarmistha Chakraborty
MemberHi,
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.
March 20, 2020 at 12:25 pm in reply to: How to allow vendors setup shipping based on both weight and regions. #112366Sarmistha Chakraborty
MemberHello,
We have received your mail. Our tech team will revert back to you asap by mail.
Thanks.
March 20, 2020 at 11:50 am in reply to: Hide Product Creation Fields. Give pre-set (default) values (Product Manager) #112358Sarmistha Chakraborty
MemberYou are welcome 🙂
Do you want hide “category” section for vendor Or want to hide a “specific category” from vendor?March 19, 2020 at 1:32 pm in reply to: Hide Product Creation Fields. Give pre-set (default) values (Product Manager) #112249Sarmistha Chakraborty
MemberHello,
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.
March 19, 2020 at 11:39 am in reply to: Is there a way to display the "About" tab as default instead of "Products" tab #112237Sarmistha Chakraborty
MemberHi,
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.
Sarmistha Chakraborty
MemberHello,
Kindly check “WCFM page” is set or not in your site.(PFA)
Thanks.
Attachments:
You must be logged in to view attached files.March 18, 2020 at 2:33 pm in reply to: How to allow vendors setup shipping based on both weight and regions. #112132Sarmistha Chakraborty
MemberHello,
It will take customization.
Please contact us here for the purpose – https://wclovers.com/setup-guidance/ (with topic link)Thanks.
Sarmistha Chakraborty
MemberHello,
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,00Matured 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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
March 17, 2020 at 12:08 pm in reply to: Add Product Form Modification in the Store Dashboard #111925Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHi,
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.Sarmistha Chakraborty
MemberHi,
Yes, That’s why choose the file location in Loco-Translate folder.(PFA)
https://localise.biz/wordpress/plugin/beginnersThanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
Can you share the images again. Your attached images were not uploaded.
Thanks.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.Sarmistha Chakraborty
MemberHello,
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.Sarmistha Chakraborty
MemberHi,
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.
Sarmistha Chakraborty
MemberHello,
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.
March 13, 2020 at 3:21 pm in reply to: Label is just a dot. What Language String is this please? #111435Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHi,
.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.
- AuthorPosts