Support » Plugin: The Events Calendar » Change Names in Event View

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Scott M. Chapman

    (@scott-m-chapman)

    Never mind, after some searching I found it, but I thought I’d share in case anyone else has the same question:

    The file is located in this directory:
    wp-content > plugins > the-events-calendar > public > advanced-functions > meta.php

    Open the meta.php file. The area i needed to edit was down at line 439:

    BEFORE:
    /**
    * Register Meta: Organizer Website
    *
    * @group tribe_event_organizer
    */
    tribe_register_meta( ‘tribe_event_organizer_website’, array(
    ‘classes’ => array(‘meta_before’=>array(‘url’)),
    ‘label’ => __( ‘Website:’, ‘tribe-events-calendar’ ),
    ‘priority’ => 40,
    ‘callback’ => ‘tribe_get_organizer_website_link’,
    ‘group’ => ‘tribe_event_organizer’

    AFTER:
    /**
    * Register Meta: Organizer Website
    *
    * @group tribe_event_organizer
    */
    tribe_register_meta( ‘tribe_event_organizer_website’, array(
    ‘classes’ => array(‘meta_before’=>array(‘url’)),
    ‘label’ => __( ‘Register:’, ‘tribe-events-calendar’ ),
    ‘priority’ => 40,
    ‘callback’ => ‘tribe_get_organizer_website_link’,
    ‘group’ => ‘tribe_event_organizer’

    and if you see my sample page from before, it now reads “Register”

    http://ctl.emacomb.com/blog/event/powerpoint-advanced/

    Thanks for sharing!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Names in Event View’ is closed to new replies.