Forum Replies Created
- AuthorPosts
Sushobhan
KeymasterHi,
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!
Sushobhan
KeymasterHello,
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/
December 20, 2019 at 6:50 pm in reply to: My wcfm error css after insert shortcode in homepage #98227Sushobhan
KeymasterWhich theme are you using? Is it mentioned under our Compatible theme list (https://wclovers.com/wcfm-compatible-themes/)?
Sushobhan
KeymasterYou 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');Sushobhan
KeymasterWhich 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)
Sushobhan
KeymasterHi 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.
Sushobhan
KeymasterFirst 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!
Sushobhan
KeymasterCould 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.
Sushobhan
KeymasterYou 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.Sushobhan
KeymasterYou 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/
Sushobhan
KeymasterYou can do these things using Elementor. Gladly, both WooCommerce and WCFM supports it. Checkout https://youtu.be/F2gyAeZdU9s to learn more about it.
Sushobhan
KeymasterHi Glad you solve the issue. Did you discover the reason? It sounds like a style conflict with a plugin or theme.
Sushobhan
KeymasterYou 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)
Sushobhan
KeymasterThen 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
}December 4, 2019 at 1:47 pm in reply to: SHOW THE CREATE DATE AND YEAR OF THE VENDOR IN VENDOR PROFILE PAGE #95993Sushobhan
KeymasterCreate a shortcode like we did for vendor registration date and use it the same way.
Sushobhan
KeymasterYou can do that via css. Which one you want to change the one inside ‘Inquiries’ tab or the one after ‘Add to Cart’ button?
Sushobhan
KeymasterFrom 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
Sushobhan
KeymasterChanging 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!
November 30, 2019 at 10:11 pm in reply to: SHOW THE CREATE DATE AND YEAR OF THE VENDOR IN VENDOR PROFILE PAGE #95086Sushobhan
KeymasterHi,
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!
Sushobhan
KeymasterYou can use the following css to fix the menu list background.
.sort-param > li:hover ul {
background: #fff;
}Sushobhan
KeymasterHi,
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.
ThanksNovember 26, 2019 at 5:53 pm in reply to: how to prevent use of spam mails during registration #94070Sushobhan
KeymasterGenerally, 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!
Sushobhan
KeymasterThis reply has been marked as private.November 25, 2019 at 5:35 pm in reply to: SHOW THE CREATE DATE AND YEAR OF THE VENDOR IN VENDOR PROFILE PAGE #93870Sushobhan
KeymasterHello, There is no direct hook of filter to achieve this. You need to custom code it.
Sushobhan
KeymasterThis reply has been marked as private.- AuthorPosts