Forum Replies Created
- AuthorPosts
- March 28, 2020 at 11:04 am in reply to: Hide Product Creation Fields. Give pre-set (default) values (Product Manager) #113641
Sarmistha Chakraborty
MemberHi,
Add this below css to your activated theme’s style.css
.vendor-dashboard .wcfm_product_manager_cats_checklist_fields,.vendor-dashboard p.wcfm_add_new_category { display: none !important; }And keep the Vendor Capability “Category” ON for Vendor in Capabilities section.
Thanks.
Sarmistha Chakraborty
MemberHello,
add_action('wcfm_vendor_setting_header_before','custom_text_add_wcfm_vendor_setting_header_before'); function custom_text_add_wcfm_vendor_setting_header_before($userid) { echo 'your settings information '; } add_action('after_wcfm_products_manage_title','fn_after_wcfm_products_manage_title'); function fn_after_wcfm_products_manage_title() { echo 'your product information text'; }Add this code in your child themes function.php.
Thanks.
Sarmistha Chakraborty
MemberHello,
Can you us the site admin access with site URL(Set as private reply). Then we can check your site and guide you accordingly.
Just check again once “sold by” settings in your site (PFA)Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberSarmistha Chakraborty
MemberHello,
Which plugin you using for “Minimum Price” field?
Thanks.
Sarmistha Chakraborty
MemberHi,
Kindly check the “Min/Max Quantities” capability(Admn WCFM dashboard -> capability) is turn-on or not.
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberSarmistha Chakraborty
MemberHello,
Please use such a plugin for the purpose – https://wordpress.org/plugins/perfect-woocommerce-brands/
Vandor can add brand from Product create/edit page PFA.Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
In Product add/edit section vendor can manage the Min/Max Quantities.(PFA)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
We cannot check your vendor store page, it shows PFA
Please share us the access details, then we can check and guide you accordingly.Thanks.
Attachments:
You must be logged in to view attached files.March 25, 2020 at 11:37 am in reply to: Hide Product Creation Fields. Give pre-set (default) values (Product Manager) #113060Sarmistha 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
MemberYou are always welcome 🙂
Regarding sellers names are not appearing in their product pages, which theme you are using? If turn-on this option form WCFM Admin Setting -> Marketplace Setting – https://ibb.co/n3Qrbss and still not appearing the vendor name in your product page, then we need to check your site. Then please provide us your site admin details with site url(set as private).
Thanks.
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,
In PHP you need to write,
echo do_shortcode('[wcfm_store_info data=""]');Thanks.
March 24, 2020 at 11:30 am in reply to: Added vendor role to admin now I cant login to my wordpress admin dashboard! #112932Sarmistha Chakraborty
MemberHello,
Can you explain your issue little more. We didn’t get you.
Thanks.
March 23, 2020 at 4:54 pm in reply to: Hide Product Creation Fields. Give pre-set (default) values (Product Manager) #112802Sarmistha Chakraborty
MemberHi,
Ok, Yes turn off the Category capability for vendor from admin, And add this code to your child theme’s functions.php –
add_action( 'after_wcfm_products_manage_meta_save', 'fn_custom_product_tag_save',10,2 ); function fn_custom_product_tag_save($new_product_id, $wcfm_products_manage_form_data) { $userid = get_current_user_id(); if(wcfm_is_vendor($userid)) { $cat_id = 10; //Add your Product Category ID wp_set_object_terms( $new_product_id, $cat_id, 'product_cat' ); } }Thanks.
Sarmistha Chakraborty
MemberHello,
It seems the text length is larger than the available container space. If possible either use a shorter synonymous text, you can use Loco translate plugin for changing the text.(https://localise.biz/wordpress/plugin/beginners)
Or
use some css to fix it.
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,
To hide “Map” and “Location Filter” from shop page, unchecked the “Product List Radius Search” from “Geo Location” settings in Admin WCFM dashboard. (PFA)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
You can use “[wcfm_store_info id=”” data=””]” shortcode in your product page.
Please check this link : https://wclovers.com/knowledgebase/wcfm-marketplace-widgets-short-codes/Thanks.
Sarmistha Chakraborty
MemberHello,
Go to the Admin WordPress dashboard -> pages -> Edit Vendor Registration page. And change the title “Seller Registration”.
Thanks.
Sarmistha Chakraborty
MemberHello,
To change text “Vendor” menu to “Seller”,
add_filter('wcfm_formeted_menus','fn_wcfm_formeted_menus',600); function fn_wcfm_formeted_menus($wcfm_menus) { $wcfm_menus['wcfm-vendors']['label'] = 'Sellers'; return $wcfm_menus; }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 change others strings “vendor”, please use Loco translate plugin for translating any text.https://localise.biz/wordpress/plugin/beginners
Thanks.
March 23, 2020 at 1:00 pm in reply to: Two tabs with the same CSS id, considering changing one of them? #112777Sarmistha Chakraborty
MemberHello,
To remove address tab in vendor backend -> Profile setting,
add_filter('wcfm_is_allow_address_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.
March 23, 2020 at 12:48 pm in reply to: "Go to Dashboard" Button in Membership thank you page not translating correctly #112772Sarmistha Chakraborty
MemberHello,
We tested the translation, and it’s working fine.
Please go to Loco Translate -> Plugins -> WCFM – WooCommerce Multivendor Membership -> select string and translate (PFA)If still not working for you please share us your temporary site details then we will check and guide you accordingly.
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Kindly modify your code,
add_filter('wcfm_marketplace_settings_fields_general','wcfm_marketplace_add_custom_field_settings_fields_general',10,2); function wcfm_marketplace_add_custom_field_settings_fields_general($fields, $user_id) { $vendor_data = get_user_meta( $user_id, 'wcfmmp_profile_settings', true ); $allow_invoice = isset( $vendor_data['allow_invoice'] ) ? esc_attr( $vendor_data['allow_invoice'] ) : 'no'; if(isset($fields['store_name'])) { $fields['allow_invoice'] = array( 'label' => __( 'Rechnung erlauben', 'ddwoo' ), 'type' => 'checkbox', 'priority' => 50, 'class' => 'wcfm-checkbox wcfm_ele', 'label_class' => 'wcfm_title wcfm_ele', 'value' => 'yes', 'dfvalue' => $allow_invoice ); } return $fields; } add_action( 'wcfm_wcfmmp_settings_update','fn_wcfm_vendor_settings_storetype_update', 30, 2); add_action( 'wcfm_vendor_settings_update','fn_wcfm_vendor_settings_storetype_update', 30, 2); function fn_wcfm_vendor_settings_storetype_update($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['allow_invoice']) && !empty($wcfm_settings_form_data_new['allow_invoice'])) { $wcfm_settings_form_data_storetype['allow_invoice'] = 'yes'; } else { $wcfm_settings_form_data_storetype['allow_invoice'] = 'no'; } $wcfm_settings_form = array_merge( $wcfm_settings_form, $wcfm_settings_form_data_storetype ); update_user_meta( $user_id, 'wcfmmp_profile_settings', $wcfm_settings_form ); }Thanks.
- AuthorPosts