Forum Replies Created
- AuthorPosts
Sarmistha Chakraborty
MemberHello,
For this firstly you need to override “wcfmmp-view-store-header.php” file in your theme folder. From “s\wp-content\plugins\wc-multivendor-marketplace\views\store” to “\wp-content\themes\your theme-folder\wcfm\store” .
Add the below code in the overridden file. (PFA)$store_address_info_custom_class = ''; if($store_info['store_hide_email'] == 'yes' && $store_info['store_hide_address'] == 'yes' && $store_info['store_hide_phone'] == 'yes') { $store_address_info_custom_class = 'hide-vendor-header-infos'; }Then add the css in your theme’s style.css
#wcfmmp-store div.hide-vendor-header-infos { min-height: 100px !important; } #wcfmmp-store .wcfm_vendor_badges{ display: none; }Thanks.
Attachments:
You must be logged in to view attached files.May 3, 2020 at 1:34 pm in reply to: WCFM registration form custom field display on vendor page #125959Sarmistha Chakraborty
MemberHello,
To display file/upload custom field in vendor’s store page (about tab),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/add_action('wcfmmp_store_after_about','additonal_info_wcfmmp_store_after_about'); function additonal_info_wcfmmp_store_after_about($vendor_id) { global $WCFM, $WCFMmp, $wpdb; $wcfmmp_addition_info_fields = wcfm_get_option( 'wcfmvm_registration_custom_fields', array() ); if( empty( $wcfmmp_addition_info_fields ) ) return; $has_addition_field = false; if( !empty( $wcfmmp_addition_info_fields ) ) { foreach( $wcfmmp_addition_info_fields as $wcfmvm_registration_custom_field ) { if( !isset( $wcfmvm_registration_custom_field['enable'] ) ) continue; if( !$wcfmvm_registration_custom_field['label'] ) continue; $has_addition_field = true; break; } } if( !$has_addition_field ) return; $wcfmvm_custom_infos = (array) get_user_meta( $vendor_id, 'wcfmvm_custom_infos', true ); if( !empty( $wcfmmp_addition_info_fields ) ) { foreach( $wcfmmp_addition_info_fields as $wcfmvm_registration_custom_field ) { if( !isset( $wcfmvm_registration_custom_field['enable'] ) ) continue; if( !$wcfmvm_registration_custom_field['label'] ) continue; $field_class = ''; $field_value = ''; $wcfmvm_registration_custom_field['name'] = sanitize_title( $wcfmvm_registration_custom_field['label'] ); $field_name = 'wcfmmp_additional_infos[' . $wcfmvm_registration_custom_field['name'] . ']'; $field_id = md5( $field_name ); $ufield_id = ''; if( !empty( $wcfmvm_custom_infos ) ) { if( $wcfmvm_registration_custom_field['type'] == 'upload' ) { $ufield_id = md5( 'wcfmvm_custom_infos[' . sanitize_title( $wcfmvm_registration_custom_field['label'] ) . ']' ); $field_value = isset( $wcfmvm_custom_infos[$ufield_id] ) ? $wcfmvm_custom_infos[$ufield_id] : ''; $field_value = wcfm_get_attachment_url($field_value); echo '<img src="'.$field_value.'" />'; } } } } }Thanks.
May 3, 2020 at 12:56 pm in reply to: [wcfm_stores search_category="46"] doesn't show VENDOR LIST but PRODUCTS #125952Sarmistha Chakraborty
MemberHi,
Sorry, but unfortunately we don’t have any shortcode for this.
This is not possible using any small code snippet.
It requires custom development, and this will be a paid one.
If you are interested then please contact us here –https://wclovers.com/woocommerce-multivendor-customization/ with requirement.Thank You
May 3, 2020 at 12:53 pm in reply to: Vendor Registration-Terms & Conditions and Privacy Policy #125951Sarmistha Chakraborty
MemberHello,
Try this below css/style in your theme’s style.css –
.wcfm-membership-wrapper #wcfm_membership_container input[type="text"], .wcfm-membership-wrapper #wcfm_membership_container input[type="password"], .wcfm-membership-wrapper #wcfm_membership_container input[type="number"], #wcfm_membership_container select, #wcfm_membership_container .select2-container { display: block; width: 85%; } #wcfm_membership_container .wcfm_email_verified, #wcfm_membership_container .wcfm_sms_verified, #wcfm_membership_container .wcfm_store_slug_verified { margin-left: 0; }Thanks.
May 3, 2020 at 12:42 pm in reply to: removing pages links from the index and keeping the pages #125947Sarmistha Chakraborty
MemberHello,
To remove “cart, checkout, and privacy page” pages from Header Menu, you have to remove these “menu links” from Menus.(WP-admin dashboard -> Appearance -> Menus.
Thanks.
Sarmistha Chakraborty
MemberHello,
Try this below code in your activated theme’s functions.php.
function remove_woocommerce_actions() { add_action( 'woocommerce_before_shop_loop_item_title', 'wcfm_removewoocommerce_template_loop_product_thumbnail', 9 ); } add_action( 'init', 'remove_woocommerce_actions' ); function wcfm_removewoocommerce_template_loop_product_thumbnail(){ if ( function_exists( 'wcfm_is_store_page' ) && !wcfm_is_store_page()) { remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); } }Thanks.
May 3, 2020 at 12:13 pm in reply to: Nothing Happened after "Click here" on Chosen MEMBERSHIP PLAN #125931Sarmistha Chakraborty
MemberSarmistha Chakraborty
MemberHi,
To modify stores block you need to override “wcfmmp-view-store-lists-card.php” file in your theme folder. From “\wp-content\plugins\wc-multivendor-marketplace\views\store-lists” to “\wp-content\themes\flatsome-child\wcfm\store-lists”.
Thanks.
Sarmistha Chakraborty
MemberHello,
As you understand this requirement is not possible using code snippet.
It will requires serious custom development, and this will be a paid one.
If you are interested then please contact us here – https://wclovers.com/woocommerce-multivendor-customization/ (with proper project of scope), our development team will reach you out.Thank You
May 1, 2020 at 8:58 pm in reply to: [wcfm_stores search_category="46"] doesn't show VENDOR LIST but PRODUCTS #125474Sarmistha Chakraborty
MemberHello,
Yes we can see your website, and the link has not expired. please provide us the page link which contain this
[wcfm_stores search_category="46"]shortcode.
And please confirm is there any custom coding in your site or not?Thanks.
Sarmistha Chakraborty
MemberHello,
Please check you have saved the “Maximum Radius to Search” settings 10km.(PFA) and added below code in your activated theme’s functions.php.
add_filter('wcfmmp_radius_filter_start_distance',function($start_distance){ return 1; });And please confirm whether you are able to see this picture2.png n front-end or not?
Thanks.
Attachments:
You must be logged in to view attached files.May 1, 2020 at 8:39 pm in reply to: Not Able to Enable Product Approval in Marketplace Settings Tutorial #125467Sarmistha Chakraborty
MemberHello,
This “Product Approval” option/checkbox will not work, this is only given to indicate the admin/you to set the capabilities from WCFM Dashboard -> Capability.
So, this checkbox is disabled and it is not for the requirement which you want.
Hope it will be clear to you.Thanks.
Sarmistha Chakraborty
MemberHello,
Sorry, unfortunately those modification is not possible by using UX-builder.
We can help you, how to modify those sections using some custom development.
To modify header sections, tabs you have to override the “wcfmmp-view-store-header.php” and “wcfmmp-view-store-tabs.php” files in your theme folder. From “\wp-content\plugins\wc-multivendor-marketplace\views\store” to “\wp-content\themes\flatsome-child\wcfm\store”To modify product blocks, you need to modify WooCommerce product blocks in shop page(The product blocks in vendor’s store page is same as WooCommerce shop page). You need to override content-product.php in your theme folder(yourtheme/woocommerce/content-product.php).
Thanks.
May 1, 2020 at 7:45 pm in reply to: Nothing Happened after "Click here" on Chosen MEMBERSHIP PLAN #125458Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberHello,
For this you need to adjust “Maximum Radius to Search” (From WCFM-dashboard->Settings->Geo Location)
And then add below code in your theme’s functions.phpadd_filter('wcfmmp_radius_filter_start_distance',function($start_distance){ return 1; });We have already replied you https://wclovers.com/forums/topic/how-to-change-the-default-search-radius-google-map/ in this thread.
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('wcfm_profile_fields_about',function($fields,$vendor_id) { unset($fields['about']); return $fields; },10,2);Thanks.
Sarmistha Chakraborty
MemberHello,
Well, we are trying this(admin discount bug) but there are a lot of technical hiccups for incorporating this. Basically. it’s not possible ensure a perfect calculation based on the fact which coupon is chosen first by the customer.
Thanks.
May 1, 2020 at 3:13 pm in reply to: Nothing Happened after "Click here" on Chosen MEMBERSHIP PLAN #125363Sarmistha Chakraborty
MemberThis reply has been marked as private.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_membership_registration_fields_address',function($fields) { $fields['zip']['custom_attributes'] = array( 'required' => 0 ); //Remove *(required) from postcode unset($fields['zip']); //Remove postcode field from vendor registration return $fields; });Thanks.
Sarmistha Chakraborty
MemberHi,
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('wcfmmp_is_allow_sold_by_linked', '__return_false');Thanks.
Sarmistha Chakraborty
MemberHello,
To change Register Url in wordpress site, You have to add below code in your theme’s functions.php –
add_filter( 'register_url', 'my_register_url' ); function my_register_url( $url ) { if( is_admin() ) { return $url; } return "http://atolota.com/vendor-register/"; }Suggestion : Turn-off “registration in My account page” from WooCommerce -> Settings -> Accounts & Privacy (PFA)
And “Registration” Menu(which linked to http://atolota.com/vendor-register/) in your site Header-menu.Thanks.
Attachments:
You must be logged in to view attached files.May 1, 2020 at 2:39 pm in reply to: Not Able to Enable Product Approval in Marketplace Settings Tutorial #125356Sarmistha Chakraborty
MemberHello,
These “Option” use for better Indication for admin/client. Our many user does not understand how to setup vendor capabilities. So, we make this option, and redirect them to our WCFM-capability section where you/admin can set capability for vendor.
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
It will be very helpful if you let us know what kind of modification you are looking for? Then We can guide you accordingly.
Suggestion – You can modify many style using Elementer & WCFM – WCFM Marketplace integrate Elementor(https://wordpress.org/plugins/wc-frontend-manager-elementor/)Thanks.
Sarmistha Chakraborty
MemberYou are always welcome 🙂
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.
We are closing this topic.
Thanks.
Sarmistha Chakraborty
MemberHello,
・how can i edit store top page?
/store/shop-1/
WP admin bar does not showing Edit menu.
>>Did you want to edit/modify the “store tabs” from vendor store page? Can you please explain us( with scrrenshot ), What modification are you looking for? then we can guide you properly.・how can i change product clumns on store page?
now products are 3 in 1 row.
>>Try the code in your theme’s functions.php –add_filter('loop_shop_columns', 'loop_columns', 999); if (!function_exists('loop_columns')) { function loop_columns() { return 2; // 2 products per row } }・how can i show “store message(Vendor)” to Product page?
>>By-default any custom vendor’ value is not display in product page. Can you please let us know which field value(store message, how to add store message?), you want to display in product page(where in product page?) ?
Then we can guide you accordingly.Thanks.
- AuthorPosts