Customising Meta Labels

Home Forums Calendar Products Events Calendar PRO Customising Meta Labels

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #159053
    Martin
    Participant

    Hi

    Hoping you can help me edit the outputs of tribe_events_single_event_meta()

    I have single-event.php in theme/tribe-events. How can I rename the label ‘Organizer’?

    Cannot find it anywhere. Thanks. Martin.

    #159398
    Martin
    Participant

    Any assistance on this? I’m just looking to edit the spelling of the word in the meta details.

    Thankyou
    Martin

    #160112
    Barry
    Member

    Hi Martin,

    Please do note it may take 24hrs (sometimes 48hrs, at periods of peak activity) before we can respond: while we do try to answer threads in order unfortunately ‘bumping’ them can cause them to appear as if they are newer than they really are.

    To the question at hand, though, would adding something like this to your theme’s functions.php file help?

    add_action( 'tribe_pre_get_view', 'change_organizer_field_meta_label' );
    
    function change_custom_field_meta_label() {
    	tribe_set_meta_label( 'tribe_event_organizer', 'NEW LABEL!', 'meta_group' );
    }
    #160468
    Martin
    Participant

    Hi. Thanks, and apologies for appearing impatient.

    I have tried your code as follows:

    add_action( 'tribe_pre_get_view', 'change_organizer_field_meta_label' );

    function change_custom_field_meta_label() {
    tribe_set_meta_label( 'tribe_event_organizer', 'Organiser', 'meta_group' );
    }

    but the label remains the same. Did I miss something?

    Thanks.

    #160696
    Barry
    Member

    Yes, I do apologize, that should have been:

    add_action( 'tribe_pre_get_view', 'change_organizer_field_meta_label' );
    
    function change_organizer_field_meta_label() {
    	tribe_set_meta_label( 'tribe_event_organizer', 'NEW LABEL!', 'meta_group' );
    }

    (There was a typo in the function name.)

    Does that help?

    #160710
    Martin
    Participant

    Yes! Thanks – that did the trick 😉

    #160732
    Barry
    Member

    Awesome!

    I’ll go ahead and close the thread. As an aside, though, if you have a moment and wanted to share your thoughts/experiences on The Events Calendar over on our review page we’d love to hear from you 🙂

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Customising Meta Labels’ is closed to new replies.