Forum Replies Created
- AuthorPosts
- January 21, 2020 at 3:58 pm in reply to: Admin and Vendor Order Dashboard Status Symbols Overlapping Each Other #103003
Sarmistha Chakraborty
MemberThis reply has been marked as private.January 21, 2020 at 3:57 pm in reply to: Admin and Vendor Order Dashboard Status Symbols Overlapping Each Other #103001Sarmistha Chakraborty
MemberThis reply has been marked as private.January 20, 2020 at 7:02 pm in reply to: How to translate the tab titles within the vendor page and emails? #102867Sarmistha Chakraborty
MemberHello,
1. Please select the plugin Loco Translate -> Plugins -> “WCFM – WooCommerce Multivendor Marketplace” for changing titles of the tabs .
2. Well, if you have to edit emails header/footer then you have to edit from wp-admin -> WooCommerce -> Emails
WCFM all emails follow WooCommerce email template.Thanks.
January 20, 2020 at 4:08 pm in reply to: Admin and Vendor Order Dashboard Status Symbols Overlapping Each Other #102847Sarmistha Chakraborty
MemberThis reply has been marked as private.January 20, 2020 at 1:18 pm in reply to: I didn't know why i no see "Sold By" at single product page #102820Sarmistha Chakraborty
MemberHello,
Please Turn on “Visible Sold By” settings. (PFA).
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHi,
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.Sarmistha Chakraborty
MemberHello,
I need to adjust the product page to four or five columns on the product page too.
>>Go to Appearance -> Customize -> Integrations -> WooCommerce.
Under “Layout” section you will find “Shop – Product Columns”
Select the number of products you want to display in a row from the drop-down. (example: 1, 2,3 or 4)How can I hide the product search by distance and geolocation
>>For hiding the search by distance and geolocation, Add this css to your child theme’s style.css
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/ (PFA).wcfmmp-product-geolocate-wrapper .wcfmmp-product-list-map{display:none!important;} .wcfmmp-product-geolocate-wrapper{display:none !important}place it inside a widget on the products page?
>>It will need custom work. Please contact us here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Add this style also,
.wcfmmp-product-geolocate-wrapper{display:none !important}If you add style using this plugin – https://wordpress.org/plugins/code-snippets/ then add this style within “style” tag. (PFA)
Thanks.
Attachments:
You must be logged in to view attached files.January 17, 2020 at 4:40 pm in reply to: Admin and Vendor Order Dashboard Status Symbols Overlapping Each Other #102454Sarmistha Chakraborty
MemberHello,
It will be very helpful if you send us one temporary admin/vendor details along with your site link.
Then we can check your site and guide you properly.Thanks.
Sarmistha Chakraborty
MemberHi,
Add this css to your child theme’s style.css
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Thanks.
Sarmistha Chakraborty
MemberHello,
1. How could i disable “Add to My Store” function?
>> Go to the settings<your site url>/settings-> modules and turn off the “Single Product Multi-vendor” (PFA)2. How is “Add to My Store” work? have any doc could read?
>>Please check : https://wclovers.com/knowledgebase/wcfm-marketplace-single-product-multi-vendor/Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Add custom tab to vendor store page,
add_filter( 'wcfmmp_store_tabs', 'custom_wcfmmp_store_tabs',90,2); function custom_wcfmmp_store_tabs($store_tabs, $vendor_id) { $store_tabs['newtab'] = __( 'NEW Tab', 'wc-multivendor-marketplace' ); return $store_tabs; } add_filter( 'wcfmp_store_default_query_vars', 'wcfm_store_events_default_query_var' ); function wcfm_store_events_default_query_var( $query_var ) { global $WCFM, $WCFMmp; if ( get_query_var( 'newtab' ) ) { $query_var = 'newtab'; } return $query_var; } 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 'newtab': $store_tab_url = $store_tab_url.'newtab'; 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('newtab').'?$', 'index.php?post_type=product&'.$wcfm_store_url.'=$matches[1]&'.$WCFMmp->wcfmmp_rewrite->store_endpoint('newtab').'=true', 'top' ); add_rewrite_rule( $wcfm_store_url.'/([^/]+)/'.$WCFMmp->wcfmmp_rewrite->store_endpoint('newtab').'/page/?([0-9]{1,})/?$', 'index.php?post_type=product&'.$wcfm_store_url.'=$matches[1]&paged=$matches[2]&'.$WCFMmp->wcfmmp_rewrite->store_endpoint('newtab').'=true', 'top' ); } function wcfm_vendor_profile_custom_endpoint() { global $WCFM, $WCFMmp,$WCFMu; $wcfm_store_url = get_option( 'wcfm_store_url', 'store' ); add_rewrite_endpoint( 'newtab', EP_ROOT | EP_PAGES ); } add_action( 'init', 'wcfm_vendor_profile_custom_endpoint',12 );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/Create “wcfmmp-view-store-newtab.php” file in your active theme’s
<your active theme>/wcfm/store/wcfmmp-view-store-newtab.php. In this file add your custom content.
If you are facing any problem, you may reach us here for this – https://wclovers.com/woocommerce-multivendor-customization/Thanks.
January 17, 2020 at 12:51 pm in reply to: How do i add new custom field under vendor registration form? #102433Sarmistha Chakraborty
MemberHello,
add_filter('wcfm_membership_registration_fields_address','fn_wcfm_membership_registration_fields_address'); function fn_wcfm_membership_registration_fields_address($fields) { unset($fields['country']); unset($fields['state']); unset($fields['zip']); return $fields; }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.
January 17, 2020 at 11:48 am in reply to: How do i add new custom field under vendor registration form? #102408Sarmistha Chakraborty
MemberHello,
As we told you previously to add add new custom field to vendor registration form , go to –
<your site url>/store-manager/settings/-> Vendor RegistrationI want to use drop-down field inside show all vendor list.
>> Can you please elaborate with screenshot where you want to add field.Thanks.
Sarmistha Chakraborty
MemberHello,
Are you using any plugin for custom product type ? Or you are developing it in custom manner? If not, it requires customization and will incur efforts.
Please contact us here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/ with this topic link.
Thanks.
January 16, 2020 at 12:39 pm in reply to: How do i add new custom field under vendor registration form? #102261Sarmistha Chakraborty
MemberHello,
To add custom fields to vendor registration form, go to the
<your site url>/store-manager/settings/. (PFA)Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Modify the style,
.wcfmmp_sold_by_wrapper a { color: #a8a8a8 !important; }Thanks.
Sarmistha Chakraborty
MemberHello,
add_action( 'init',function(){ global $WCFMmp, $WCFM, $WCFMu; remove_action( 'end_wcfm_user_profile', array( $WCFMu->vendor_verification, 'wcfmu_vendor_verification_user_profile_fields' ), 15 ); });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.
January 15, 2020 at 6:23 pm in reply to: Inquiry Message Notification Email Template and Variables allowed #102139Sarmistha Chakraborty
MemberHi,
WCfM has no such email templates to override and edit. These are auto-generated notification.
For editing such texts best to do using translation.
Thank You
Sarmistha Chakraborty
MemberHello,
1. Ok. This is not a small tweak. It requires some custom script. Please contact us here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/ with this topic link.
2. Sorry, cann’t get you. can you please elaborate your requirement.
Thanks.
Sarmistha Chakraborty
MemberHello,
1. I reckon that you are requiring the capabilities included by us to be reflected globally by for a group rather than being set only for a particular vendor. Let me know if I am correct in understanding you here.
2. Yeah we have the feature where a vendor can be assigned to multiple groups. This is specifically done so that the vendor can enjoy the privileges of the better group. Additionally, please note that if any particular capability is turned as OFF then it will be set as OFF once the group is merged
Thanks.
Sarmistha Chakraborty
MemberHello,
By the default vendor can edit store settings from mobile.
You can check in our demo site https://wcfmmp.wcfmdemos.com/my-account/. (PFA)If you still have facing same problem, can you share us the site details. So, we can check your site.
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Please confirm whether the “Store Card Text Color” is changed?
Kindly share us the page link(Store name under product), then we will send you the exact style.Thanks.
Sarmistha Chakraborty
MemberHello,
Just to confirm that you had turn off “Enquiry” for required vendor.
<your site url>/store-manager/vendors/ -> select vendor -> turn off the "Enquiry" in custom capability.If it’s still not working, please share us the site details then we can check in your site.
Thanks.
Attachments:
You must be logged in to view attached files.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('wcfm_is_allow_setup_billing_settings','__return_false');Thanks.
- AuthorPosts