Forum Replies Created
-
AuthorPosts
-
Sarah Cardella
ParticipantThanks, Courtney!
Do the imported events amount limits traverse all the sites (ie. 100 events
can be imported daily, shared across all the sites), or does each site get
the 100 events per day limit (Site A gets 100 imports, Site B also gets
100, etc.)? Let me know if that makes sense. 🙂Sarah Cardella
ParticipantHi Caroline,
Here is the staging site with the cost filter active: http://visithsboweb.staging.wpengine.com/events/
If you click on April at the bottom to go to next month, you’ll see that no events show up. Let me know if you have any ideas.
Thanks for your help, Caroline!
JustinSarah Cardella
ParticipantWe ended up removing the Cost filter from the filter bar, and that seems to have fixed the issue. If you have a fix for this though, so we can add the Cost filter back in, let us know. Thanks!
Sarah Cardella
ParticipantDear Forums, We would like to acknowledge that we have received your request and a ticket has been created. A support representative will be reviewing your request and will send you a personal response.(usually within 24 hours). To view the status of the ticket or add comments, please visit https://pluto.freshdesk.com/helpdesk/tickets/1049 Thank you for your patience. Sincerely, Pluto Education Support Team
Sarah Cardella
ParticipantI was wondering if you could help me with this exact same issue? I’ve gotten the Event Website URL to display a “View Website” link just fine, but I’m having trouble with the Organizer and Venue links displaying as a “View Website” link. If you can point me in the right direction, I’d really appreciate it. Here’s the code I’m using for the three different links. All of this is in my functions.php file.
//Change Event URL to linked word instead of showing long URL add_filter('tribe_get_event_website_link_label', 'tribe_get_event_website_link_label_default'); function tribe_get_event_website_link_label_default ($label) { if( $label == tribe_get_event_website_url() ) { $label = "Visit Website »"; } return '<a href="' . tribe_get_event_website_url() . '">' . $label . ' </a>'; } //Change Organizer URL to linked word instead of showing long URL add_filter('tribe_get_organizer_website_link_label', 'tribe_get_organizer_website_link_label_default'); function tribe_get_organizer_website_link_label_default ($label) { if( $label == tribe_get_organizer_website_url() ) { $label = "Visit Website »"; } return '<a href="' . tribe_get_organizer_website_url() . '">' . $label . ' </a>'; } //Change Venue URL to linked word instead of showing long URL add_filter('tribe_get_venue_website_link_label', 'tribe_get_venue_website_link_label_default'); function tribe_get_venue_website_link_label_default ($label) { if( $label == tribe_get_venue_website_url() ) { $label = "Visit Website »"; } return '<a href="' . tribe_get_venue_website_url() . '">' . $label . ' </a>'; }Can you let me know what I’m doing wrong in the Organizer and Venue snippets above?
Thanks!
-
AuthorPosts
