Patricia

Forum Replies Created

Viewing 15 posts - 631 through 645 (of 1,816 total)
  • Author
    Posts
  • in reply to: Links to my older events do not work anymore. #1396923
    Patricia
    Member

    Hi William,

    Answering your question: yes, it is possible to embed single events in different pages with the [tribe_event_inline] Shortcode!

    You will find detailed information about how to use it in the following article:

    https://theeventscalendar.com/knowledgebase/embedding-single-events-tribe_event_inline-shortcode/

    You can also create categories to group events that will happen in a specific venue and use the [tribe_events] shortcode to display all of them together:

    https://theeventscalendar.com/knowledgebase/embedding-calendar-views-tribe_events-shortcode/

    I hope this helps!

    Cheers,

    Patricia

    in reply to: Event List is not displaying shortcodes correctly #1396881
    Patricia
    Member

    Hi April!

    Oh, this is happening because we didn’t set the title attribute for use in PHP. Please replace:

    return the_title_attribute();

    with:

    return the_title_attribute('echo=0');

    You will find more info about the_title_attribute here:

    https://codex.wordpress.org/Function_Reference/the_title_attribute

    I’ve tested the shortcode here and everything is working as expected now 🙂

    I hope this helps! If you have any other questions at all please feel free to let me know and I’d be happy to help as best I can!

    Cheers,

    Patricia

    in reply to: Day view always showing current date #1396844
    Patricia
    Member

    Hi Timothy,

    I’ve ran some tests and the [tribe_events view=”day” tribe-bar=”false”] shortcode is not working in version 4.4.19 indeed (I’m not able to navigate to previous/next days). Everything works as expected in version 4.4.18, so at this moment I would recommend you to downgrade your plugin or simply use the [tribe_events view=”day”] shortcode and hide the tribe-bar via CSS:

    #tribe-events.view-day.tribe-bar #tribe-events-bar {
    display: none;
    }

    I’ve added the issue to our internal bug report. I cannot guarantee when it will be fixed, as it’s in the development team’s hands now, but the good news is that you will be contacted as soon as a solution is available.

    Thank you for your patience and understanding and if you have any other questions in the meantime, please let me know!

    Best Regards,

    Patricia

    in reply to: Scheduled imports not working #1396722
    Patricia
    Member

    This reply is private.

    in reply to: 404 due to length of URL #1396526
    Patricia
    Member

    Hi Jeff,

    Thanks for sharing your test results with us! I’ve ran some tests in my own WordPress install and wasn’t able to reproduce the error while having the free version of Yoast SEO installed. Could you please send us a copy of Yoast SEO Premium (via private reply) so we can take a look and run some tests?

    If you have any other questions in the meantime, please feel free to let me know and I’d be happy to help as best I can!

    Cheers,

    Patricia

    Patricia
    Member

    This reply is private.

    Patricia
    Member

    This reply is private.

    in reply to: Help page blank #1396202
    Patricia
    Member

    Hi there,

    Thank you for reaching out to us! I’m sorry to hear that you are having problems with our logging: let me help you to solve this!

    Could you please add the following code to your theme’s functions.php file and let me know if it helps you to disable logging and solve the problem?

    # Disable logging
    add_filter( 'tribe_common_logging_engines', '__return_empty_array' );

    Thanks!

    Patricia

    in reply to: Upgraded to PRO, Need Standard Event List Widget #1396111
    Patricia
    Member

    Hi Doug,

    Thanks for sharing this info with us! One way to solve this is by completely removing the PRO’s widgets. If you are not using other Events Calendar PRO’s widgets (like the Countdown or the Venue widgets), you can add the following snippet in your theme’s functions.php file:

    add_action( 'widgets_init', array( 'theEventsCalendarWidgetCleanup', 'removeTribeEventsProWidgets' ) );

    class theEventsCalendarWidgetCleanup {

    static public function removeTribeEventsProWidgets() {
    if ( class_exists( 'Tribe__Events__Pro__Main' ) ) {
    remove_action( 'widgets_init', array( Tribe__Events__Pro__Main::instance(), 'pro_widgets_init' ), 100 );
    }
    }
    }

    If you want to keep the other widgets and only remove the PRO’s events list, please let me know and I’ll check what we can do to help you with this task.

    Thanks!

    Patricia

    in reply to: synchronize plugin updates #1396008
    Patricia
    Member

    This reply is private.

    in reply to: synchronize plugin updates #1395924
    Patricia
    Member

    This reply is private.

    in reply to: Trouble Importing Google Calendar Events #1395879
    Patricia
    Member

    Hi David,

    Thanks for sharing your Google Calendar with us! As I can see from here you have only 3 events in your calendar. Please note that by default the import date range limit is one month. To import events far in the future, please access your Dashboard and head over to Events > Settings > Imports > Global Import Settings and change the Import Limit type to “do not limit” or limit by date range and change the limit to 3 months.

    Also, please note that to import your events, you have to use this URL format:

    https://calendar.google.com/calendar/ical/polqdqucn37us7mo810jdp8s78%40group.calendar.google.com/public/basic.ics

    Does it help you to solve the problem? If you have any other questions at all please feel free to let me know and I’d be happy to help as best I can!

    Best Regards,

    Patricia

    in reply to: Scheduled imports not working #1395769
    Patricia
    Member

    This reply is private.

    in reply to: Fatal Error: Out of Memory with Recurring Events #1395753
    Patricia
    Member

    Hi Becky,

    I’m glad to hear that recreating the event helped you to solve the problem! It’s possible that you had a plugin-theme conflict that was solved after the update.

    If you have any other questions at all please feel free to let me know and I’d be happy to help as best I can!

    Cheers,

    Patricia

    in reply to: Fatal error: Allowed memory size #1395738
    Patricia
    Member

    Hi Dayana,

    Thanks!

    The Fatal Error you shared is associated with one of the WordPress core files and it’s not possible for us to tell what plugin/function is causing this based on the information you shared.

    Do you have any other errors in your debug.log? If you do, please send us the complete file so we can take a took. Sometimes increasing the PHP memory limit to 256M is not enough: if your server has enough resources, I would recommend you to increase the limit again to 512M and let me know if it helps you to solve the problem.

    If the issue persists, I’ll be happy to help you with the next steps.

    Cheers,

    Patricia

Viewing 15 posts - 631 through 645 (of 1,816 total)