Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Gustavo Bordoni

    (@bordoni)

    After version 5.1.0 of The Events Calendar, we introduced a new filter specifically for that label;

    You should be able to do it using the filter: tribe_get_organizer_website_link_label or even tribe_get_organizer_website_link

    
    add_filter( 'tribe_get_organizer_website_link_label', function () {
        return 'Organizer Website';
    } );
    
    Thread Starter Paul Buijs

    (@paulbuijs)

    Hi Gustavo,

    Thanks for the quick response and info!

    Can you help me out a little more with the specific steps?

    Which plugin file do I need to override in my child theme?
    Which line(s) of code in the file am I replacing?
    With what code?

    Jaime

    (@jaimemarchwinski)

    Hi @paulbuijs

    No problem, you’ll want to add that code directly to your theme’s functions.php file.

    You can swap in either of the filters that Gustavo mentioned above.

    I hope that helps!

    Thanks,
    Jaime

    Thread Starter Paul Buijs

    (@paulbuijs)

    Perfect. Thank you both!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Change Organizer Website URL to Text Link’ is closed to new replies.