Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WC Vendors › Registeration Form(Policy tab Label and Stor Social Set Up)
Tagged: policy tab label, Registration Form, store set-up
- This topic has 4 replies, 2 voices, and was last updated 4 years, 6 months ago by luis.samouco.
- AuthorPosts
- May 2, 2020 at 8:45 pm #125764luis.samoucoParticipant
Hello, I have 4 questions on my website: Local Chain Registration:
1-In the first image (after registration in the store set up) there is the Policy Tab Label. Is it possible to remove this question tab? What I want is every shop to have that automatically renamed for “Store Policies” with no need to ask in the registration.
2-What is the “P” in the first image that appears in loads of text boxes in my website?
3-After a few steps, we find the Social Set Up, on the second image I show the tabs, is it possible to add the text URL in front of all the social names? So that store vendors can know that we are asking for the website?
4-The last question is where can I change the text that appears in the last picture when the registration is ended?
Thank you a lot for your help!
Attachments:
You must be logged in to view attached files. - May 3, 2020 at 10:42 pm #126205Sarmistha ChakrabortyMember
Hello,
1-In the first image (after registration in the store set up) there is the Policy Tab Label. Is it possible to remove this question tab? What I want is every shop to have that automatically renamed for “Store Policies” with no need to ask in the registration.
>>Add this code to your child theme’s functions.phpadd_filter( 'wcfm_vendor_settings_fields_policies',function($fields, $vendor_id){ $fields['wcfm_policy_tab_title']['label'] = ''; $fields['wcfm_policy_tab_title']['type'] = 'hidden'; $fields['wcfm_policy_tab_title']['value'] = 'Store Policies'; return $fields; },10,2);
2-What is the “P” in the first image that appears in loads of text boxes in my website?
>>This the WordPress editor default feature. You can see you have seected “paragraph” that’s why it is showing “p”3-After a few steps, we find the Social Set Up, on the second image I show the tabs, is it possible to add the text URL in front of all the social names? So that store vendors can know that we are asking for the website?
>>Add this code to your child theme’s functions.phpadd_filter( 'wcfm_profile_fields_social',function($fields, $vendor_id){ $fields['twitter']['label'] = __('Twitter Url', 'wc-frontend-manager'); $fields['facebook']['label'] = __('Facebook Url', 'wc-frontend-manager'); $fields['instagram']['label'] = __('Instagram Url', 'wc-frontend-manager'); $fields['youtube']['label'] = __('Youtube Url', 'wc-frontend-manager'); $fields['linkdin']['label'] = __('Linkedin Url', 'wc-frontend-manager'); $fields['google_plus']['label'] = __('Google Plus Url', 'wc-frontend-manager'); $fields['snapchat']['label'] = __('Snapchat Url', 'wc-frontend-manager'); $fields['pinterest']['label'] = __('Pinterest Url', 'wc-frontend-manager'); return $fields; },10,2);
4-The last question is where can I change the text that appears in the last picture when the registration is ended?
>>Add this code to your child theme’s functions.phpadd_filter( 'wcfm_store_setup_complete_message',function($txt){ $txt = __( "Your store is ready. It's time to experience the things more Easily and Peacefully. Add your products and start counting sales, have fun!!", 'wc-multivendor-marketplace' ); //change the text as per your requirement return $txt; },10,2);
Thanks.
- May 6, 2020 at 6:13 pm #127471luis.samoucoParticipant
This was amazing! Everything got solved! Thank you so much for your help! I really appreciate your help! Thank you so much!
- May 6, 2020 at 7:12 pm #127521Sarmistha ChakrabortyMember
You 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.
- May 6, 2020 at 7:24 pm #127533luis.samoucoParticipant
I just left a good review! If you want me to give more reviews and feedback in other places I am more than happy to do it! You guys deserve to be known for the best Marketplace plugin! <3 Thank you 😀
- AuthorPosts
- You must be logged in to reply to this topic.