Mark Earl

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • in reply to: Events not appearing in month view on mobile #1439948
    Mark Earl
    Participant

    I have not been able to find there are plugin conflicts. And the latest version is still having this happen on mobile.

    in reply to: Option to update city name #1298422
    Mark Earl
    Participant

    I thought of this, but there were no events with the city! But it was still in the filter list!

    in reply to: Submit Event Not Working #1295158
    Mark Earl
    Participant

    Yes, but it looks like now with the latest version just released the issue is fixed.

    in reply to: Submit Event Not Working #1293313
    Mark Earl
    Participant

    The one built into the plugin.

    in reply to: Shortcode Not Working #1207872
    Mark Earl
    Participant

    This reply is private.

    in reply to: Shortcode Not Working #1206622
    Mark Earl
    Participant

    This reply is private.

    in reply to: Help with making website url a button #1206619
    Mark Earl
    Participant

    I was able to do the class. So this issue is resolved! Thanks!

    in reply to: Help with making website url a button #1206165
    Mark Earl
    Participant

    That new code is making Visit Website appear and work properly, but even with the css it is not a button. I am not seeing anything with class in your new code?

    in reply to: Shortcode Not Working #1204086
    Mark Earl
    Participant

    This reply is private.

    in reply to: Help with making website url a button #1203810
    Mark Earl
    Participant

    Any update?

    I was just using mostly code made originally available by you guy’s on your site. But doesn’t appear to be working.

    in reply to: Help with making website url a button #1202626
    Mark Earl
    Participant

    It wasn’t posting everything above correctly, so it should now here:

    //Change Event URL to button
    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 »";
    	$class = "event-website-button-class";
      }
     
      return '<a class="' . $class . '" href="' . tribe_get_event_website_url() . '">' . $label . ' </a>';
    }
     
    //Change Organizer URL to button
    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;";
    	$class = "event-website-button-class";
      }
     
      return '<a class="' . $class . '" href="' . tribe_get_organizer_website_url() . '">' . $label . ' </a>';
    }
     
    //Change Venue URL to button
    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;";
    	$class = "event-website-button-class";
      }
     
      return '<a class="' . $class . '" href="' . tribe_get_venue_website_url() . '">' . $label . ' </a>';
    }
    • This reply was modified 7 years, 5 months ago by Mark Earl.
    in reply to: Help with making website url a button #1202616
    Mark Earl
    Participant

    I saw some issues with my code above. Here is my revised code:

    //Change Event URL to button
    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 »”;
    $class = “my-button-class”;
    }

    return ‘‘ . $label . ‘ ‘;
    }

    //Change Organizer URL to button
    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 »”;
    $class = “my-button-class”;
    }

    return ‘‘ . $label . ‘ ‘;
    }

    //Change Venue URL to button
    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 »”;
    $class = “my-button-class”;
    }

    return ‘‘ . $label . ‘ ‘;
    }

    Still does not work, though.

    in reply to: 2 Questions #1197338
    Mark Earl
    Participant

    Yes, we were able to get a working solution for the featured image. Thanks for the other fix.

    One more question: In the month view, we are seeing a few format issues. For the events at the top at the beginning of the month, when you hover over part of the pop up is showing up under the header. And when you hover over an event with a featured image, the sizes are different depending on the image so it pushes text further.

    in reply to: Featured Image Default for Event #1179791
    Mark Earl
    Participant

    I took that suggestion and found a plugin called “Quick Featured Images” that works just fine. Thanks.

    in reply to: Filter bar not working on certain mobile view #1179084
    Mark Earl
    Participant

    That worked!

    By the way, could I pass on some suggestions for future updates, as I would rather not make a new thread.

    It is great in the new Pro 4.3 you can add a specific shortcode for a event view on a page. But it would be great if you could add more options with the shortcode. For example, in Photo view, I would like to limit how many events are displayed, and also have options to turn on/off the description, or limit how much description text is shown.

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