Customizing Header of Event URL

Home Forums Calendar Products Events Calendar PRO Customizing Header of Event URL

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #130310
    lifebridge
    Participant

    Hello, could you tell me on which of the files I can find the Event URL header. I would like to change the header to say, Registration Link. Thanks.

    #130346
    Barry
    Member

    Hi! Can you give a few more details – do you mean you want to change the title on a specific events page? Please also take a look through the Themer’s Guide if you haven’t already done so, it might answer a few questions you have.

    #130350
    lifebridge
    Participant

    Hi Barry, yes, I want to change the Header on all specific events page to read instead of Event Website, to Registration Link. I will also take a look at the theme’s guide.

    #130373
    lifebridge
    Participant

    Hi Barry, when you look at a specific event, you can see three rows: Event Details, Venue, and Organizer. Under Event Details, there is a header called Website (Here you put the url for the event’s website). I want to change this to read Registration Link, instead of Website. I just cannot find where to change this.

    #130376
    lifebridge
    Participant

    P.S. I don’t know which Plugin File this is located in.

    #130858
    Barry
    Member

    Thanks for clarifying! We wouldn’t recommend changing core plugin files, but you could accomplish this by adding a short snippet to your theme’s functions.php file:

    add_action( 'tribe_pre_get_view', 'change_custom_field_meta_label' );
    
    function change_custom_field_meta_label() {
    	tribe_set_meta_label( 'tribe_event_website', 'NEW LABEL!', 'meta' );
    }

    Does that help?

    #130860
    lifebridge
    Participant

    Great Barry, I will try that! Have a great evening.

    #135099
    Barry
    Member

    Happy to help 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Customizing Header of Event URL’ is closed to new replies.