Registeration Form(Policy tab Label and Stor Social Set Up)

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WC Vendors Registeration Form(Policy tab Label and Stor Social Set Up)

Viewing 4 reply threads
  • Author
    Posts
    • #125764
      luis.samouco
      Participant

      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.
    • #126205

      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.php

      add_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.php

      add_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.php

      add_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.

    • #127471
      luis.samouco
      Participant

      This was amazing! Everything got solved! Thank you so much for your help! I really appreciate your help! Thank you so much!

    • #127521

      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.

    • #127533
      luis.samouco
      Participant

      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 😀

Viewing 4 reply threads
  • You must be logged in to reply to this topic.