Changing "Website" title to "Online Registration"

Home Forums Calendar Products Events Calendar PRO Changing "Website" title to "Online Registration"

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #113062
    millcreekpark
    Participant

    Hi,
    Where at would I go in the code to be able to change the title “Website”?
    See: http://i.imgur.com/U8uHmqy.jpg

    #113276
    Barry
    Member

    Hi! You could try adding a snippet like the following to your theme’s functions.php file:

    add_filter( 'tribe_event_meta_event_website', 'change_website_meta_title' );
    
    function change_website_meta_title( $html ) {
    	return str_replace( 'Website', 'Custom term', $html );
    }

    Does that help?

    #113396
    millcreekpark
    Participant

    Works great, thanks a bunch!

    #138305
    Barry
    Member

    Closing this thread as it’s been quite a while – of course if we can help with anything else please do create a new thread. Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing "Website" title to "Online Registration"’ is closed to new replies.