• Resolved mirarno

    (@mirarno)


    When I click on the website link in an event it opens in the same window. So your customer has left your website. How can I change this so that when you click on the link it opens in a new window?

    Thanks for the help.

    Miranda

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • HI @mirarno ,
    Thanks for writing in,

    Could you please try the following snippet and see if it works for you?
    You need to copy and paste the snippet at the bottom of your theme’s functions.php file

    add_filter( ‘tribe_get_event_website_link_target’, ‘tribe_blank_target_for_event_link’ );
    function tribe_blank_target_for_event_link() {
    return ‘_blank’;
    }

    Let me know how it goes
    Best
    Santiago

Viewing 1 replies (of 1 total)

The topic ‘Link in event’ is closed to new replies.