How to change the name of the Exhibitors, Sponsors and Speakers

  1. Home
  2. Docs
  3. Fudge2
  4. Frequently Asked Question...
  5. How to change the name of the Exhibitors, Sponsors and Speakers

How to change the name of the Exhibitors, Sponsors and Speakers

Please do remember to back-up the file prior to any changes.

1) You can find the code for exhibitors in wp-content/themes/fudge-2/event-framework/components/cpts/exhibitor.php

Around line number 3, you can find the below code:

‘labels’ => array (
‘name’ => __( ‘Exhibitors’, ‘dxef’ ),
‘singular_name’ => __( ‘Exhibitor’, ‘dxef’ ),
‘add_new’ => __( ‘Add New’, ‘dxef’ ),
‘add_new_item’ => __( ‘Add New Exhibitor’, ‘dxef’ ),
‘edit_item’ => __( ‘Edit Exhibitor’, ‘dxef’ ),
‘new_item’ => __( ‘New Exhibitor’, ‘dxef’ ),
‘view_item’ => __( ‘View Exhibitor’, ‘dxef’ ),
‘search_items’ => __( ‘Search Exhibitors’, ‘dxef’ ),
‘not_found’ => __( ‘No Exhibitors found’, ‘dxef’ ),
‘not_found_in_trash’ => __( ‘No Exhibitors found in trash’, ‘dxef’ ),
‘menu_name’ => __( ‘Exhibitors’, ‘dxef’ )
),

Please change  ‘Exhibitor’ in the above code.

2) You can find the code for Sponsors in wp-content/themes/fudge-2/event-framework/components/cpts/sponsor.php

Around line number 3, you can find the below code:

‘labels’ => array (
‘name’ => __( ‘Sponsors’, ‘dxef’ ),
‘singular_name’ => __( ‘Sponsor’, ‘dxef’ ),
‘add_new’ => __( ‘Add New’, ‘dxef’ ),
‘add_new_item’ => __( ‘Add New Sponsor’, ‘dxef’ ),
‘edit_item’ => __( ‘Edit Sponsor’, ‘dxef’ ),
‘new_item’ => __( ‘New Sponsor’, ‘dxef’ ),
‘view_item’ => __( ‘View Sponsor’, ‘dxef’ ),
‘search_items’ => __( ‘Search Sponsors’, ‘dxef’ ),
‘not_found’ => __( ‘No Sponsors found’, ‘dxef’ ),
‘not_found_in_trash’ => __( ‘No Sponsors found in trash’, ‘dxef’ ),
‘menu_name’ => __( ‘Sponsors’, ‘dxef’ )
),

Please change  ‘Sponsor’ in the above code.

3) You can easily change Speakers name via Theme Options->Performers section. Please clear Permalink cache via Settings->Permalinks.

Note: 1 and 2 are core theme file changes. You need to reapply the change after theme upgrade.

Was this article helpful to you? Yes No