Change text on Export Listed Events

Home Forums Calendar Products Events Calendar PRO Change text on Export Listed Events

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #987709
    Sharon Watt
    Participant

    How would I change the text on the Export Listed Events button?

    Thanks

    #987868
    George
    Participant

    Hey Sharon,

    To do this, you’ll basically just want to add some PHP like the following to your theme’s functions.php file to filter that text:


    add_filter( 'tribe_events_ical_export_text', 'tribe_987709_filter_ical_export_text' );

    function tribe_987709_filter_ical_export_text() {
    return 'Export this new Example text';
    }

    I know this is a simple example, but basically, you just “return” whatever new text you’d like to display there instead of the original.

    Try this out and see if it works well for you โ€“ย let us know! ๐Ÿ™‚

    โ€” George

    #988219
    Sharon Watt
    Participant

    Worked great. Thank you!

    #988602
    George
    Participant

    Awesome! Be sure to keep a backup of any custom code like this on your site, just in case you lose it if you update your Theme sometime down the line.

    Cheers!
    George

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change text on Export Listed Events’ is closed to new replies.