Cliff

Forum Replies Created

Viewing 15 posts - 10,291 through 10,305 (of 10,686 total)
  • Author
    Posts
  • in reply to: Mini Calendar Events Widgets are Missing #1027006
    Cliff
    Member

    Hi. The account you’re logged in to has purchased Filter Bar but not PRO. I believe you’re looking for the widgets available in PRO.

    You can read our Widgets documentation for additional information.

    Let me know if you need additional clarification on anything.

    Cliff
    Member

    Hi Lauren.

    On my test site, this was the CSS rule making the past events 50% opacity:

    .tribe-events-calendar td.tribe-events-past .tribe-events-month-event-title a,
    .tribe-events-calendar td.tribe-events-past .tribe-events-viewmore a {
    opacity: .5;
    filter: Alpha(opacity=50);
    }

    It came from /wp-content/plugins/the-events-calendar/src/resources/css/tribe-events-theme.min.css

    You could add code like this to override it:

    .tribe-events-month .tribe-events-calendar td.tribe-events-past .tribe-events-month-event-title a,
    .tribe-events-month .tribe-events-calendar td.tribe-events-past .tribe-events-viewmore a {
    opacity: 1.0;
    filter: Alpha(opacity=100);
    }

    See that I added .tribe-events-month before each selector (to add CSS specificity) and changed the opacity from 50% to 100%.

    ===

    You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.

    Please let me know if this answered your question.

    Thanks!

    in reply to: 404 errors on recurring events & cannot edit series #1026985
    Cliff
    Member

    Oh, great. Glad to hear it.

    So at this point is there anything left to do? I want to make sure we fully resolve all aspects of this issue.

    in reply to: Previews not importing #1026717
    Cliff
    Member

    It’ll should import all 52 occurrences as separate (non-connected) events.

    Please continue using/testing and let me know if you need anything else.

    in reply to: Customised Date and Time format display in List Widget #1026716
    Cliff
    Member

    I’m glad you got it figured out for your needs. Thanks for letting me know.

    in reply to: 404 errors on recurring events & cannot edit series #1026714
    Cliff
    Member

    Angie, I’m glad we could at least confirm the pattern (what we found via database and what you found in your own testing).

    Could you please recreate one of those events, test to make sure it works properly — and, if it does, continue recreating the rest of the ones on our “broken events” list?

    We know it’s not fun recreating events, but we’ve not seen this issue appear for anyone else and building you a custom solution to resolve the issue would probably take as much or more time than you recreating them. As such, having you recreate these events is recommended, assuming the first test one works properly.

    Please proceed with this course of action and update me accordingly.

    Thank you for your understanding.

    Cliff
    Member

    Thanks for the link and the additional information.

    I see now that you’re asking about your site’s main header changing from a fixed/scrolling header to a static header.

    All I can tell you is that the Events page is a WordPress “archive” page, and the Event Single page is a “single” custom post type page.

    Your theme’s options — or contacting your theme author — would be the place to ask how to get the same fixed/scrolling header on your “.single-tribe_events” template. We cannot provide theme-specific customization support per our Scope of Support Terms.

    Thank you for your understanding.

    Cliff
    Member

    Thanks for your understanding and patience.

    Cliff
    Member

    Robin, I am sorry to hear your upgrade from version 2 to 3 wasn’t as smooth as you would have wanted.

    Heads up: we’re planning to release version 4 within a month or so.

    Hopefully you’ll agree that versions 3 and 4 are major improvements over version 2.

    Regarding this specific ticket’s main topic, we cannot provide support for your in-depth customization request, per our Scope of Support Terms. But you’re welcome to browse our Feature Requests and possibly submit a new issue.

    I appreciate your understanding and please know that you are a valued customer.

    in reply to: Incorrect path on install (part 2) #1026709
    Cliff
    Member

    Thank you for the screenshot.

    Just to double-check, do you have the latest version of The Events Calendar core/free? Version 3.12.6 is the current version. Your system report from earlier displayed 3.12.5.

    Once you have the latest version, does the All Events link work?

    If not, keep the latest version and try these troubleshooting ideas:

    Did you try switching Permalinks to “Default”?

    Please try using Twenty Fifteen theme, all non-Modern Tribe plugins disabled, and with Permalinks set to Default. Then visit wp-admin > Events > Settings and see if “Events URL slug” has the proper slash between the domain and the slug (i.e. that it forms a proper link).

    If not, please change ‘events’ to something else like ‘calendar’, save settings, and see if the slash was added then.

    Hopefully one of these things can help resolve the issue. If not, we’ll see what else we can try. We’ll get to the bottom of it!

    Thanks.

    in reply to: Format events list widget calendar box color #1026707
    Cliff
    Member

    The CSS file that adds border-left: 5px solid #d8882d styling is http://www.hessel.org/?teccc_css=30f16fc7b078cc06c9a7ea87d7cb9d35

    This is not from our plugin. I’m guessing this is from your theme.

    The styling is added for a BUNCH of different selectors:

    Screenshot 2015-11-16 23.43.49

    Nevertheless, you can override this code with CSS like this:

    .tribe-events-adv-list-widget .tribe-mini-calendar-event a {
    border-left-color: red !important;
    }

    Ordinarily, I don’t like to use !important, but there are many CSS selectors, plus I’m not sure if you want all of them the same color or different colors per event category. Regardless, this should get you headed in the right direction, which is the extent of our support for personal customizations.

    ===

    You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.

    ===

    I hope this helps!

    in reply to: Incorrect path on install (part 2) #1025507
    Cliff
    Member

    Thanks for your system report. The slug settings look fine there.

    I looked at the code used to generate the link and there’s a filter for it.

    If you have any custom code anywhere using the tribe_get_events_link filter (theme’s functions.php file or in a plugin), please remove it to test.

    If you’re not using that filter, please send me a screenshot of your permalink settings — from wp-admin > Settings > Permalinks

    in reply to: Customised Date and Time format display in List Widget #1025506
    Cliff
    Member

    I have determined you’re using the List Widget from the free/core The Events Calendar plugin, which is fine. FYI: the PRO plugin, when activated, replaces that widget with the same thing but with more options, if you’re interested.

    So /wp-content/plugins/the-events-calendar/src/views/widgets/list-widget.php is the file generating your widget output. tribe_events_event_schedule_details() is generating the duration you’re seeing on screen.

    The easiest way to manipulate how that duration is displayed might be to edit your General settings date/time formats:

    Screenshot 2015-11-13 17.09.36

    If changing those doesn’t help, you may be able to leverage one of these filters to accomplish your customization:

    Search the /wp-content/plugins/the-events-calendar/src/functions/template-tags/general.php file for ‘function tribe_events_event_schedule_details’ for further research.

    I hope this points you in the right direction to accomplish what you’re wanting.

    in reply to: Format events list widget calendar box color #1025494
    Cliff
    Member

    That’s what I’ll try to do once I get a link to the site that screenshot came from…

    in reply to: Customised Date and Time format display in List Widget #1025427
    Cliff
    Member

    Hi Nickolas.

    I didn’t see “Min” on my test site with Twenty Fifteen theme, and I didn’t find it in the List Widget file at /wp-content/plugins/events-calendar-pro/src/views/pro/widgets/list-widget.php

    Could you please provide me a link to your site and a screenshot of where you’re seeing it?

    Thanks.

Viewing 15 posts - 10,291 through 10,305 (of 10,686 total)