Forum Replies Created
- AuthorPosts
Sarmistha Chakraborty
MemberHello,
Add the below style,
h2.woocommerce-loop-product__title { color: #000; //change the color as your requirement }Or please share us the page link, we will guide you accordingly.
Thanks.
Sarmistha Chakraborty
MemberHello,
Unfortunately it isn’t possible to cancel the order by the vendors because any order for a multivendor site will contain orders for multiple vendors, thus canceling a an order will make the whole order for other vendors also canceled. Hence this isn’t possible to incorporate this. Hope you understand.
Thanks.
Sarmistha Chakraborty
MemberHello,
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_filter( 'woocommerce_product_tabs', 'check_vendor_have_wcfm_enquiry_product_tab', 999 ); function check_vendor_have_wcfm_enquiry_product_tab($tabs) { global $product,$WCFM; $vendor_id = $WCFM->wcfm_vendor_support->wcfm_get_vendor_id_from_product( $product->get_id() ); $vendor_cap = get_user_meta($vendor_id,'_wcfm_user_capability_options',true); if(!empty($vendor_cap) && $vendor_cap['enquiry']=='yes') { unset($tabs['wcfm_enquiry_tab']); } return $tabs; } add_filter('wcfm_is_allow_product_enquiry_bubtton','check_vendor_have_wcfm_is_allow_product_enquiry'); function check_vendor_have_wcfm_is_allow_product_enquiry() { global $product,$WCFM; if(is_product()) { $vendor_id = $WCFM->wcfm_vendor_support->wcfm_get_vendor_id_from_product( $product->get_id() ); $vendor_cap = get_user_meta($vendor_id,'_wcfm_user_capability_options',true); if(!empty($vendor_cap) && $vendor_cap['enquiry']=='yes') { return false; } else { return true; } } else { return true; } }Note: Admiin have to set capability vendor wise.
Thanks.
Sarmistha Chakraborty
MemberHello,
1. store list carousel (example here: https://ibb.co/JzJ3sxp)
>> Change “Store Card Text Color” from WCFM dashboard settings->Store style.2. Store name under product
>>Add this code to your child theme’s style.css.wcfmmp_sold_by_wrapper a { color: #000!important; // change the color as your requrement }Thanks.
Sarmistha Chakraborty
MemberHello,
We are assuming that you have already installed “WooCommerce Frontend Manager”,”WooCommerce Multivendor Marketplace” & “WooCommerce Multivendor Membership”.
Please go to the below link for all membership plans,
<your site url>/store-manager/memberships/Ref: https://wclovers.com/knowledgebase/wcfm-membership/
Thanks.
Sarmistha Chakraborty
MemberHi,
Turn off the “Inquiry” module wcfm settings page.(PFA)
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Can you explain us your requirement.
Thanks.
Sarmistha Chakraborty
MemberHi,
Is it possible to move the verification to here (screenshot)
>> It’s not possible “verification” move to “let’s go” page.
That’s why we have sent you the previous script for, “Let’s go” redirect to vendor profile “verification” page.Thanks.
Sarmistha Chakraborty
MemberHi,
Is it possible for the verification to be moved to the quick setup that comes after you register?
>> What we understand that you want to off “vendor verification” in vendor registration form. Then turn off the “Email Verification” from Store Registration Settings.(PFA)some of our vendors told us that when they submit a product it just loads and doesn’t show a confirmation and each time they hit submit we get multiple requests for the same product.
>>Please check at wp-admin -> WooCommerce -> Status -> Logs -> fatal_erros log -> is any error generated?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)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Use this translation tool – https://wordpress.org/plugins/loco-translate/
You do not have to make any such adjustment from child theme.
Thank You
December 22, 2019 at 12:07 pm in reply to: Displaying "Enable stock management at product level" for variable products #98467Sarmistha Chakraborty
MemberHi,
Can you share us the site details(admin details), then we can check your site.
Thanks.
Sarmistha Chakraborty
MemberHi,
Can you share us the site details(admin details), then we can check your site.
Thanks.
December 22, 2019 at 11:09 am in reply to: Redirect to Product page instead of Dashboard after Login. #98463Sarmistha Chakraborty
MemberHello,
add_filter( 'wcfm_login_redirect','custom_wcfm_login_redirect', 10, 2 ); function custom_wcfm_login_redirect($redirect_to, $user){ return $redirect_to.'/products'; }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.
December 22, 2019 at 10:33 am in reply to: Description and Description tab are Missing from Product Pages, Rearrange tabs #98458Sarmistha Chakraborty
MemberHello,
add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 ); function reordered_tabs( $tabs ) { $tabs['description']['priority'] = 10; //change the number as per order-number of tabs $tabs['reviews']['priority'] = 15; return $tabs; }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,
add_filter('wcfmmp_store_setup_steps','fn_wcfmmp_store_setup_steps'); function fn_wcfmmp_store_setup_steps($default_steps) { $default_steps['introduction']['view'] = 'custom_wcfmmp_store_setup_introduction'; return $default_steps; } function custom_wcfmmp_store_setup_introduction(){ //change the text as your requirement ?> <h1><?php printf( __("Welcome to %s!", 'wc-multivendor-marketplace'), get_bloginfo('title') ); ?></h1> <p><?php printf( __('Thank you for choosing %s! This quick setup wizard will help you to configure the basic settings and you will have your store ready in no time.', 'wc-multivendor-marketplace'), get_bloginfo('title') ); ?></p> <p><?php esc_html_e("If you don't want to go through the wizard right now, you can skip and return to the dashboard. You may setup your store from dashboard › setting anytime!", 'wc-multivendor-marketplace'); ?></p> <p class="wc-setup-actions step"> <a href="<?php echo site_url().'/store-manager/profile/#sm_profile_manage_form_verification_head'; ?>" class="button-primary button button-large button-next wcfm_submit_button"><?php esc_html_e("Let's go!", 'wc-frontend-manager'); ?></a> <a href="<?php echo esc_url(get_wcfm_url()); ?>" class="button button-large"><?php esc_html_e('Not right now', 'wc-frontend-manager'); ?></a> </p> <?php }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,
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.Thanks.
Sarmistha Chakraborty
MemberHello,
Aren’t you getting the Store manager Dashboard ? Here is the link :
<your site url>/store-manager/.
If you don’t have this page,Setup the WCFM page from WCFM options (PFA)Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Enter the plugin is “WCFM – WooCommerce Multivendor Marketplace”, add “English” language by clicking “New language”.
Thanks.
December 17, 2019 at 5:34 pm in reply to: Displaying "Enable stock management at product level" for variable products #97771Sarmistha Chakraborty
MemberHello,
Turn on the “Inventory” capability from admin store-manager dashboard(PFA). Then vendor can manage “Manage Stock” for each variation.
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
What we understand that, you want only label change.
Unfortunately there are no filter for this. You can change the label with “loco translate” plugin(https://wordpress.org/plugins/loco-translate/).Thanks.
Sarmistha Chakraborty
MemberHello,
Change the Woocommerce settings “Selling location” (PFA)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Setup the WCFM page from WCFM options (PFA).
Or can you share us the site admin details. Then we can check your settings.Thanks.
Attachments:
You must be logged in to view attached files.December 15, 2019 at 2:14 pm in reply to: How remove politcs refound/shipping from capability of vendor? #97538Sarmistha Chakraborty
MemberHello,
What we understand that, you want remove “Policies Setting” capability from vendor but admin can add “Policies” for this vendor store. 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_filter( 'wcmp_vendor_can_overwrite_policies', '__return_false' );Thanks.
Sarmistha Chakraborty
MemberHello,
Turn off the “virtual” and “downloadable” product capability from store-manager dashboard.
Thanks.
December 15, 2019 at 1:45 pm in reply to: How to Remove Vendor Email and Social from Store Page #97535Sarmistha Chakraborty
MemberHello,
To Remove vendor’s email and social media accounts from their store page, turn off the “Show Email” and “Show Social” capability from admin store-manager dashboard (PFA). Or if you are using “WooCommerce Frontend Manager – Groups & Staffs” then do the same for each group’s capability.
Thanks.
Attachments:
You must be logged in to view attached files.- AuthorPosts