Brian

Forum Replies Created

Viewing 15 posts - 2,881 through 2,895 (of 11,256 total)
  • Author
    Posts
  • in reply to: Display problem with WordPress #1028259
    Brian
    Member

    Hi,

    Thanks for using the Events Calendar.

    Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.

    The Events Calendar

    Thanks again!

    in reply to: editing the CSS #1028257
    Brian
    Member

    Hi,

    I found this changes the text color for me:

    .tribe-events-month-event-title a {
    color: #fff;
    }

    The class might not be in the stylesheet you most likely will have to create your selectors like that.

    Thanks

    in reply to: Different style depending on category #1028180
    Brian
    Member

    You can try this coding from George, that might work:

    Add Category name as body_class

    Beyond that I do not have anything else to provide on this and can only support existing features and not customizations.

    Thanks

    in reply to: Email notifications for community events not received #1027899
    Brian
    Member

    Hi,

    Sorry for the issues you are having. I can help out here.

    Do you have another form or something like that on your site that notifies you that is not Event Calendar related that you can test to see if that works?

    If not can you try to see if the Password Reset email gets sent to you from the login screen?

    Let me know and we can go from here.

    Thanks

    Brian
    Member

    Hi,

    Sorry for the issues you are having here I can help out.

    Can you try just activating the Free Version and see if that works?

    How did you update the Events Calendar and Pro?

    Can you confirm you only have one copy of each in your plugin directory?

    Let me know and we can go from here.

    Thanks

    Brian
    Member

    Hi,

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

    There is no feature to fast forward the main month view to the first month with events.

    You can link directly to May 2016 if you like, beyond that I do not have a feature to help out.

    If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.

    http://tribe.uservoice.com/

    Cheers

    in reply to: Subcategories in PRO version #1027894
    Brian
    Member

    Hi,

    Thanks for the interest in Pro.

    The Event Categories work the same in Pro as they do in the free version.

    If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.

    http://tribe.uservoice.com/

    Cheers

    in reply to: Changing widget-title header #1027889
    Brian
    Member

    Hi,

    Thanks for using the Events Calendar.

    Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.

    The Events Calendar

    Having said that I would check out our themer’s guide for making these changes:

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

    But please take any questions in response to the guide to WordPress.org

    Thanks again!

    in reply to: Use plugin for Products release dates? #1027886
    Brian
    Member

    Hi,

    Thanks for the interest in our plugins.

    I can help out here.

    We do have this guide for changing the word events:

    https://theeventscalendar.com/knowledgebase/changing-the-word-events-to-something-else/

    That would be a global change and might get you what you are looking to do.

    You could also use our themer’s guide to remove the organizer and venue areas:

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

    Finally you could relabel venue or organizer to something else as well:

    https://theeventscalendar.com/knowledgebase/relabeling-the-venue-organizer-sections-in-event-meta/

    We are limited in support customizations much beyond this, but that should get you close to what you are looking for.

    Thanks

    in reply to: 404 only on all events link #1027885
    Brian
    Member

    Hi,

    Thanks for using the Events Calendar.

    Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.

    The Events Calendar

    Thanks again!

    in reply to: Recurring events on non-regular intervals #1027883
    Brian
    Member

    I am glad to see you were able to figure it out and thanks for sharing!

    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!

    in reply to: Add a category to a page with photo view #1027880
    Brian
    Member

    Hi,

    It looks like they modified the Event List Widget is being used on the home page.

    I do not have any coding provide for a customization like that.

    We have our themer’s guide for making changes:

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

    There is also this 3rd party guide that might help too:

    https://theeventscalendar.com/knowledgebase/horizontal-list-widget/

    I can try to help answer a question or two, but beyond that customizations are beyond the support we can provide.

    Cheers

    in reply to: Different style depending on category #1027878
    Brian
    Member

    Hi,

    That coding is on the right track, but the event categories are a custom taxonomy so it will not work with get_the_category().

    I came up with this coding instead and it worked for me:

    /*
    * The Events Calendar - Add First Event Category Name to Body Class in Single Events
    *
    * Events > Settings > Display Tab > Events Template must be set to Default Event Template
    */
    add_filter( 'body_class', 'tribe_add_event_category' );
    function tribe_add_event_category( $classes = '' ) {

    global $post;

    if ( is_singular( 'tribe_events' ) ) {

    $category = get_the_terms( $post->ID, 'tribe_events_cat' );

    $classes[] = 'category-' . $category[0]->slug;

    }

    return $classes;
    }

    This will only work if this Events template setting here:

    Events > Settings > Display Tab > Events Template

    Is set to “Default Events Template”

    Cheers

    in reply to: Related Events error #1027876
    Brian
    Member

    You’re Welcome.

    Since this is resolved I am going to close this ticket, but if you have any pre-sales questions, please create a new ticket for us to help you out 🙂

    in reply to: Facebook Event Image Size #1027875
    Brian
    Member

    Sounds good. Let me know what you find out.

    Thanks

Viewing 15 posts - 2,881 through 2,895 (of 11,256 total)