Title: Fields customization
Last modified: August 1, 2020

---

# Fields customization

 *  Resolved [Purnendu](https://wordpress.org/support/users/impurnendu/)
 * (@impurnendu)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fields-customization-2/)
 * Hi,
    I am building a Test Series marketplace for Students. So, as per my need
   can you help me to do these?
 * 1. Change the Vendor profile tab “Products” to “Exams”
 * 2. Change the slug “Vendor” to “Teacher”

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [kbmchdt](https://wordpress.org/support/users/kbmchdt/)
 * (@kbmchdt)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fields-customization-2/#post-13201518)
 * You better off using a translator, thats what i used WP Override Translations.
   It changes all the names i need site wide
 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fields-customization-2/#post-13202496)
 * Add this snippet to your site for the purpose-
 *     ```
       function wcfm_custom_0308_translate_text( $translated ) {
       	$translated = str_ireplace( 'Product', 'Exam', $translated );
       	$translated = str_ireplace( 'product', 'exam', $translated );
       	$translated = str_ireplace( 'Vendor', 'Teacher', $translated );
       	$translated = str_ireplace( 'vendor', 'teacher', $translated );
       	return $translated;
       }
       add_filter('gettext', 'wcfm_custom_0308_translate_text');
       add_filter('ngettext', 'wcfm_custom_0308_translate_text');
       ```
   
 * Add custom code(s) to your child theme’s functions.php
    In case you do not have
   child theme then add those using this plugin – https://wordpress.org/plugins/
   code-snippets/

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Fields customization’ is closed to new replies.

 * ![](https://ps.w.org/wc-multivendor-marketplace/assets/icon-256x256.gif?rev=2611991)
 * [WCFM Marketplace - Multivendor Marketplace for WooCommerce](https://wordpress.org/plugins/wc-multivendor-marketplace/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wc-multivendor-marketplace/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wc-multivendor-marketplace/)
 * [Active Topics](https://wordpress.org/support/plugin/wc-multivendor-marketplace/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wc-multivendor-marketplace/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * Last activity: [5 years, 10 months ago](https://wordpress.org/support/topic/fields-customization-2/#post-13202496)
 * Status: resolved