Forum Replies Created
- AuthorPosts
Sarmistha Chakraborty
MemberYou 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
MemberHi,
To add below code in your theme’s functions.php, you can use our inquiry module(https://wclovers.com/knowledgebase/wcfm-enquiry-module/) for those external product have no url filled in product edit.
function woocommerce_external_add_to_cart() { global $product; if ( ! $product->add_to_cart_url() ) { ?> <a href="javascript:void(0)" id="external_url_enquiry">Ask the Price</a> <?php return; } wc_get_template( 'single-product/add-to-cart/external.php', array( 'product_url' => $product->add_to_cart_url(), 'button_text' => $product->single_add_to_cart_text(), ) ); }Thanks.
Sarmistha Chakraborty
MemberHello,
To add custom field in vendor store settings,and save to database, try this code in your theme’s functions.php
add_filter('wcfm_marketplace_settings_fields_general', 'wcfm_marketplace_settings_fields_general_custom2004', 50, 2 ); function wcfm_marketplace_settings_fields_general_custom2004($general_fields,$vendor_id) { $vendor_data = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true ); $store_externalurl = isset( $vendor_data['store_externalurl'] ) ? esc_attr( $vendor_data['store_externalurl'] ) : ''; if(isset($general_fields['store_name'])) { $general_fields['store_externalurl']= array('label' => __('Store External URl', 'wc-frontend-manager') , 'type' => 'text', 'class' => 'wcfm-text wcfm_ele', 'label_class' => 'wcfm_title wcfm_ele', 'value' => $store_externalurl ); } return $general_fields; } add_action( 'wcfm_wcfmmp_settings_update','fn_wcfm_vendor_settings_storetype_update2004', 50, 2); add_action( 'wcfm_vendor_settings_update','fn_wcfm_vendor_settings_storetype_update2004', 50, 2); function fn_wcfm_vendor_settings_storetype_update2004($user_id, $wcfm_settings_form ){ $wcfm_settings_form_data_new = array(); parse_str($_POST['wcfm_settings_form'], $wcfm_settings_form_data_new); $wcfm_settings_form_data_storetype = array(); if(isset($wcfm_settings_form_data_new['store_externalurl']) && !empty($wcfm_settings_form_data_new['store_externalurl'])) { $wcfm_settings_form_data_storetype['store_externalurl'] = $wcfm_settings_form_data_new['store_externalurl']; } $wcfm_settings_form = array_merge( $wcfm_settings_form, $wcfm_settings_form_data_storetype ); update_user_meta( $user_id, 'wcfmmp_profile_settings', $wcfm_settings_form ); }I want to be displayed it in the Vendor List after clicking the “+” (More Info) icon.
>>Sorry this point is not clear, when you add the field, you will find the field in each store details (PFA)Thanks.
Attachments:
You must be logged in to view attached files.April 20, 2020 at 7:41 pm in reply to: WCFM membership option is not showing in store manager dashboard #121039Sarmistha Chakraborty
MemberHello,
Please create knowledge-base for vendor where you guide them.
https://wclovers.com/knowledgebase/wcfm-knowledgebase/Thanks.
Sarmistha Chakraborty
MemberHello,
For “Store invoice” support you need our premium WCFM-Ultimate(https://wclovers.com/product/woocommerce-frontend-manager-ultimate/) and WooCommerce PDF Invoice and Packing Slips plugin.
Please check the documentation – https://wclovers.com/knowledgebase/wcfm-store-invoice/Thanks.
Sarmistha Chakraborty
MemberHi,
Can you please send us the url, then we can check and guide you.
Thanks.
Sarmistha Chakraborty
MemberHi,
Try this css in your theme’s style.css
a.wcfm_registration_thank_you_dashbord_button,a.wcfm_registration_thank_you_setup_button { display:none !important; }Thanks.
Sarmistha Chakraborty
MemberHi,
you can find the order note using,
echo wp_kses_post( nl2br( wptexturize( $order->get_customer_note() ) ) );
Add this code after your client number.Thanks.
Sarmistha Chakraborty
MemberHello,
To change font color in vendor dashboard product edit section(product short description),
body#tinymce { color: #0066bf !important; }Add this css in your theme’s style.css
Thanks.
Sarmistha Chakraborty
MemberHello,
Sorry, but we didn’t get your requirement. Can you explain little more.
Here is WooCommerce External Product Documentation : https://woocommerce.com/videos/woocommerce-external-affiliate-product-overview/Thanks.
April 20, 2020 at 12:23 pm in reply to: Some of the categories are not selectionable for from the vendor\'s dashboard #120862Sarmistha Chakraborty
MemberHello,
Regarding category add by vendor, the attachment was not attached. Did you already check “Product Categories” is blank in the capability (PFA)
Regarding remove “peyment” setup from store setup,add_filter('wcfmmp_store_setup_steps','remove_payment_step'); function remove_payment_step($steps) { unset($steps['payment']); return $steps; }Add this code in your theme’s functions.php
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
To changing effect of slider is not possible. You can adjust the slider delay time,
add_filter('wcfmmp_slider_banner_delay',function($delay){ return 10000; });Add this code in your theme’s functons.php
Thanks.
Sarmistha Chakraborty
MemberHi,
For this you need to our premium WCFM – ULTIMATE plugin(https://wclovers.com/product/woocommerce-frontend-manager-ultimate/) and Groups&staff plugin(https://wclovers.com/product/woocommerce-frontend-manager-groups-staffs/).
You have to set the “Product limit” capability in each group, and assign this group with required membership.https://wclovers.com/knowledgebase/wcfm-groups-staffs/Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
In “Membership Settings” panel you will find the place where you can add features, Then those feature list will display in each “Membership plan” (PFA)
https://wclovers.com/knowledgebase/wcfm-membership/Thanks
Attachments:
You must be logged in to view attached files.April 20, 2020 at 11:30 am in reply to: How to let Vendor choose for Banner Slider instead of static image? #120843Sarmistha Chakraborty
MemberHello,
To video banner in “Store list:” page please insert the Youtube video link (PFA)
Thanks
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
You have our WCFM Groups&Staff plugin? If so, did you already check in the capability controller of the specific group you created?
Thanks.
Sarmistha Chakraborty
MemberHello ,
We used “do_action( ‘woocommerce_single_product_summary’ )” (this is WooCommerce hook) hook to display “store card” in single product page.
Thanks.
Sarmistha Chakraborty
MemberHello,
Try this code in your theme’s functions.php
add_action( 'init','remove_some_variation_fields'); function remove_some_variation_fields(){ global $WCFM, $WCFMu; remove_filter( 'wcfm_product_manage_fields_variations', array( $WCFMu->frontend, 'wcfmu_product_manage_fields_variations' ), 10, 4 ); }Thanks
Sarmistha Chakraborty
MemberHello,
WooCommerce Multivaendor Membership works with all popular marketplace add-ons –
WooCommerce Multivendor Marketplace (Our Marketplace plugin)
WC Vendors and WC Vednors PRO
Dokan Lite and Dokan PRO
WooCommerce Product VendorsCan you tell us which marketplace are you using?
Thanks.
Sarmistha Chakraborty
MemberHello,
To translate “Store Hours & Vacation” please use “Loco Translate” plugin https://localise.biz/wordpress/plugin/beginners
Loco Translate -> Plugins -> WCFM – WooCommerce Frontend Manager -> select string and translateThanks.
April 18, 2020 at 9:28 pm in reply to: Hide (or preferably, display on same line) the Store: Example Store in mini cart #120375Sarmistha Chakraborty
MemberHello,
To remove “Store” meta,
You have to override the “cart-item-data.php” file in your theme (yourtheme/woocommerce/cart/cart-item-data.php). Then add this below code in this file,(PFA)if($data['key'] == 'Store') { continue; }But in this case “store” will remove from cart and checkout.
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Firstly, Please un-checked the “Allow customers to create an account on the “My account” page” option from WooCommerce Settings->Accounts & Privacy (PFA).
And create a link for “Registration” page which will open the “Vendor Registration” page(which contain “[wcfm_vendor_registration]” shortcode). In this way who ever wants to create a account will have do it from the “Vendor Registration” page.Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Please create another thread for different issues/requirement.
Thanks.
Sarmistha Chakraborty
MemberHi,
will that filter within the results that are returned by the radius search ?
>>YesTo change “Vendor Registration” template,
You have to override – wp-content\plugins\wc-multivendor-membership\templates\vendor_registration.php
at – wp-content/themes/child theme/wcfm/membership\vendor_registration.phpThanks.
April 18, 2020 at 9:06 am in reply to: WCFM Marketplace Default Store Logo and Banner are not shown #120235Sarmistha Chakraborty
MemberHello,
i want the vendors to not be able to change the banner, but only the logo.
>>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_marketplace_settings_fields_general', 'wcfm_marketplace_settings_fields_general_custom1804', 50, 2 ); function wcfm_marketplace_settings_fields_general_custom1804($general_fields,$vendor_id) { $current_plan = wcfm_get_membership(); if(isset($current_plan) && ($current_plan == 10) ) { //replace the current plan id with your free membership plan id which vendor's cann't update banner unset($general_fields['banner_type']); unset($general_fields['banner']); unset($general_fields['banner_video']); unset($general_fields['banner_slider']); unset($general_fields['mobile_banner']); unset($general_fields['list_banner_type']); unset($general_fields['list_banner']); unset($general_fields['list_banner_video']); } return $general_fields; }customer height doesn’t resize the banner but just displays a broken part of the image.. resize should be inbuild coz not all users will upload the same size .
>>Please check this – https://ibb.co/jc6iFVThere already has a setting option for this.
Actually, this varies depending upon theme template so we can’t automatically set this.And off course there is suggestion under vendor setting for this.
Well, you will find that setting option under WCFM Admin Dashboard -> Setting -> Marketplace Tab
Thank You.
- AuthorPosts