Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    Hi,

    You can use the filter eventorganiser_register_taxonomy_event-venue. (See codex).

    E.g.

    function my_change_venue_labels( $args ){
    
    	$new_venue_labels = array(
                    'name'                       => 'Event Locations',
        	        'singular_name'              => 'Location',
        	        'search_items'               => 'Search Locations',
    	        'all_items'                  => 'All Locations',
    		'view_item'                  => 'View Location',
    		'edit_item'                  => 'Edit Location',
    		'update_item'                => 'Update Location',
    		'add_new_item'               => 'Add New Location',
    		'new_item_name'              => 'New Location Name',
    		'not_found'                  => 'No locations found',
    		'add_or_remove_items'        => 'Add or remove locations',
    		'separate_items_with_commas' => 'Separate locations with commas',
    		'venue_location'             => 'Location address',
    		'view_all_items'             => 'View all locations',
    		'singular_name_colon'        => 'Location:',
    		'no_item'                    => 'No Location',
      	);
      	$args['labels'] = $new_venue_labels;
      	return $args;
    }
    add_filter( 'eventorganiser_register_taxonomy_event-venue', 'my_change_venue_labels' );
    Thread Starter offi3

    (@offi3)

    Ok , i’ve found the file: includes/event-organiser-cpt.php

    When i open the file in notepad on line 85 is the following code:

    $event_venue_args = apply_filters( ‘eventorganiser_register_taxonomy_event-venue’, $event_venue_args );
    if( $event_venue_args ){
    register_taxonomy( ‘event-venue’,array(‘event’), $event_venue_args );
    }

    Where do i have the put the code you described? I,m not a php expert..

    Thread Starter offi3

    (@offi3)

    I also noticed there is a correct NL plugin translation in the languages map of the plugin. How to use this file?

    Plugin Author Stephen Harris

    (@stephenharris)

    See this page for setting WordPress’ language: http://codex.wordpress.org/Installing_WordPress_in_Your_Language

    The code in my previous post should live in a site utility plug-in, or otherwise your theme’s functions.php will do.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing event labels’ is closed to new replies.