Sarah Cardella

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Event Aggregator Multisite Install #1383638
    Sarah Cardella
    Participant

    Thanks, 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. 🙂

    in reply to: Events stopped showing on calendar #1261218
    Sarah Cardella
    Participant

    Hi 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!
    Justin

    in reply to: Events stopped showing on calendar #1261067
    Sarah Cardella
    Participant

    We 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!

    in reply to: Displaying list of event ticket products #1226395
    Sarah Cardella
    Participant

    Dear 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

    in reply to: Make other Website URLs a linked word or button #1188880
    Sarah Cardella
    Participant

    I 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 &raquo;";
      }
    
      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 &raquo;";
      }
    
      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!

Viewing 5 posts - 1 through 5 (of 5 total)