Forum Replies Created
-
AuthorPosts
-
zafari
ParticipantThank you, Jeremy!! I had put the CSS exactly as you have listed into
the theme’s Additional CSS area which did not work. But when I placed
it where you suggested, it works! Good to know for other issues as
well. Thank you so much!zafari
ParticipantThank you, Jaime!! At last something that works – #1. Thanks so much!!!!
zafari
ParticipantTried it, but still not working. Any other ideas? thanks!
zafari
Participantthanks, jeremy. I swapped out to the CSS you suggested but it’s still not working. Any other ideas?
here is the page I am working with: http://theshipyardpark.com/events/
THANKS!
zafari
ParticipantI have also tried using CSS to turn tooltip off using display=none !important but that isn’t working either.
zafari
ParticipantHI Jeremy,
I followed your suggestion but it is not working. Any other ideas?
zafari
ParticipantSure! I am using this modification in functions.php:
function tribe_set_link_website ( $link, $postId ) {
$website_url = tribe_get_event_website_url( $postId );
// Only swaps link if set
if ( !empty( $website_url ) ) {
$link = $website_url;
}
return $link;
}
add_filter( ‘tribe_get_event_link’, ‘tribe_set_link_website’, 100, 2 );
add_filter( ‘tribe_get_event_website_link_target’, ‘blank_target_for_new_window’ );
function blank_target_for_new_window() {
return ‘_blank’;
}The code for opening the new window is the part that is not working.
Thanks, Brendan!
zafari
ParticipantHello Victor!
Thanks so much. I actually ended up following your tutorial to change
the Event URL to a button that opens in a new window so that part is
set. However, I’d like to use your solution below to also open the
Organizer Website in a new window. What should I substitute for
“tribe_get_event_website_link_target” to accomplish this?Thanks so much for our help!!!
zafari
ParticipantYes, this is exactly what I needed! However, rather than messing around with the template, I simply put a redirect from the /events/ page to the page I want. Thanks!
-
AuthorPosts
