Brian

Forum Replies Created

Viewing 15 posts - 4,681 through 4,695 (of 11,256 total)
  • Author
    Posts
  • in reply to: Edit All Functionality #991967
    Brian
    Member

    I am glad to see you were able to figure it out.

    I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

    Brian
    Member

    Hi,

    Sorry for the issues on this.

    I can help resolve this. This function is giving a fatal error, tribe_events_single_event_meta() was deprecated 14 months ago in 3.6 and removed in 3.11.

    So that is why nothing is displaying.

    To fix this you need to update your custom template single-events.php in your theme.

    You want to replace:

    echo tribe_events_single_event_meta();

    with this function:

    tribe_get_template_part( 'modules/meta' );

    Let me know if that resolves the issue for you.

    Thanks

    Brian
    Member

    Hi,

    Glad it is getting closer.

    Are you trying show the menus for all the admins, but that is it?

    Are they all admin roles?

    in reply to: Fatal Error Line 42 #991960
    Brian
    Member

    Great glad it helps.

    I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: Fatal Error Line 42 #991800
    Brian
    Member

    Hi,

    Sorry for the issues on this.

    I can help resolve this. The function giving the fatal error, tribe_events_single_event_meta() was deprecated 14 months ago in 3.6 and removed in 3.11.

    To fix this you need to update your custom template single-events.php in your theme.

    You want to replace:

    echo tribe_events_single_event_meta();

    with this function:

    tribe_get_template_part( 'modules/meta' );

    Let me know if that resolves the issue for you.

    Thanks

    in reply to: Reccurring event won't work after I updated to 3.11 #991797
    Brian
    Member

    Hi Steffen,

    Thanks for the information.

    If the WP Cron is only running weekly that could be the issue as we schedule the recurring changes to happen when the WordPress cron runs so it is done in the background.

    We made this change as some sites with large amounts of recurring events would timeout.

    In your wp-config.php in the root directory of your site how is this constant defined:

    define(‘DISABLE_WP_CRON’, false);

    Let me know and we can go from here.

    Thanks

    in reply to: Calendar Settings #991794
    Brian
    Member

    Hi,

    Thanks for using our plugins. Sorry for the issues with your developer.

    I can try to help out out on each of your points, but limited in supporting customization so for some I may only have suggestions.

    1) Our events do not have Organizer they have Instructors. Where would I go to change “Organizer” to “Instructor”?

    This can be done by adding a snippet to your theme’s functions.php:

    /**
    * The Events Calendar - Change the Organizer/Organizers
    *
    * Add to a theme's functions.php or through a custom plugin
    *
    * This changes the organizer slug, resave permalinks on your site after adding this filter to prevent 404 errors
    * @since 3.10
    */
    add_filter('tribe_organizer_label_singular', 'tec_change_organizer_label' );
    function tec_change_organizer_label() {
    return 'Instructor';
    }

    add_filter('tribe_organizer_label_plural', 'tec_change_organizer_label_plural' );
    function tec_change_organizer_label_plural() {
    return 'Instructors';
    }

    After adding that coding please resave your permalinks here: Admin > Settings > Permalinks

    2) I have a button that links to the calendar list. It is supposed to show only classes in specific categories. However, it is not displaying classes in specific categories. The following is the code included to show classes in our Spiritual Inquiry & Practice category. Can you tell me what’s wrong with this code?

    Try this link instead:

    http://theopenmindcenter.com/view-calendar/category/spiritual-inquiry-practice/list/

    That worked for me.

    3) When viewing the full monthly calendar, can we show more than 3 classes on the calendar without customers have to click on the “see more” link (maybe 5 classes)?

    This can be changed in the Event Settings here: Events > Settings > Display Tab > “Month view events per day”

    4) When viewing the monthly calendar, there are scroll options located at the bottom of the calendar (which allows users to scroll to the prior month or the next month). Can we add these scroll options to the top of the calendar also?

    This css will show those links:

    #tribe-events-content #tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next a, #tribe-events-content #tribe-events-header .tribe-events-sub-nav li {
    display: block;
    }

    Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.

    5) When we view the calendar in a list format, we don’t need to include the center’s address at the top of each class as all of our classes in the same location. How do I remove this?

    Try out this css and add it the same as above:

    .tribe-events-list .location .tribe-events-venue-details {
    display: none;
    }

    6) In the “List” version of the calendar, can we display the product pictures that were added instead of the teachers pictures?

    The list view is setup to use the featured image of the event. To show another image there please add that as the featured image. If you are looking for something beyond that it could be done with a customization on your part following our themer’s guide:

    https://theeventscalendar.com/knowledgebase/themers-guide/

    Let me know if you have any follow up questions.

    Thanks

    Brian
    Member

    Hi,

    Thanks for the interest in our plugins.

    Currently, we do not support recurring events and we are not a booking system. Although we would like your business you are better off going with a Booking Plugin instead.

    Thanks

    in reply to: After upgrading, calendar shifted right #991781
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    I took a look at your site and it is some css in your theme causing the issue.

    Try this css to fix it:

    .post-type-archive-tribe_events.double-sidebars #content {
    margin: 0;
    }

    Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.

    Let me know if that helps.

    Thanks

    Brian
    Member

    Hi,

    Ok sorry for that. I was not able to test it.

    I tried this out and got it to work:

    https://gist.github.com/jesseeproductions/475718b9155644e6070e

    That removes it for all roles, but the admin.

    Cheers

    in reply to: Different date ranges for different views #991772
    Brian
    Member

    Great glad it helps.

    I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: Single Site License – Can use on testing server? #991700
    Brian
    Member

    Hi Ralph,

    Thanks for using WooCommerce Tickets.

    I can help out here.

    The license key is for automatic updates and not for the plugin to work. So I would add the license key where you want to update the plugin.

    If you use a local site just for testing you can manually upload the plugin there and do not have to add a license key and it will work fine for you.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: License Keys Not Holding #991695
    Brian
    Member

    Great glad it helps.

    I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: Tickets: named tickets for multiple #991694
    Brian
    Member

    No worries.

    Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: problem with term of sale #991693
    Brian
    Member

    Great glad it is working now!

    Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

Viewing 15 posts - 4,681 through 4,695 (of 11,256 total)