Andy Fragen
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Category Colors Are Not SavingWe believe the issue has to do with the redesign of the setting page in main Events Calendar plugin. The team knows and is looking into it.
Forum: Plugins
In reply to: [Embed PDF Viewer] PDFs using “Insert from URL” not displayingKristy, can you set up an example that isn’t behind a client portal? Also, if you are using Chrome the PDF loads using the Google Doc Viewer and sometimes this has issues that aren’t within my control.
Does this happen when using Safari or Firefox?
- This reply was modified 5 months, 3 weeks ago by Andy Fragen.
Forum: Plugins
In reply to: [WP Debugging] Website crash on deactivationI don’t have any problems viewing your site. A 500 error is a server issue. If WP_DEBUG is true and no errors are listed everything should be OK.
If there’s an issue you can identify with a stacktrace when saving in WP Debugging, I’m happy to evaluate it.
I don’t think the display of all day events has changed. Really long event titles will be truncated. If the event spans more than one day the event title will display in the extra space.
The display of an all day event is from the main Events Calendar plugin. This plugin simply changes the colors from the default. The rounded corners and non-wrapping aspects are how all day events are displayed. Hovering on the all day event will display the complete information.
I’m glad the filter is working for you.
You can add it to your theme’s
functions.php
file.@sem0812 try adding this filter.
// Overrides for all day events in Kadence theme.
add_filter( 'teccc_fix_category_background_color', function( $empty, $cat_selector ) {
$slug = str_replace( '.tribe-events-category-', '', $cat_selector) ;
return "#primary article.tribe-events-calendar-month__multiday-event.tribe_events_cat-{$slug} h3, #primary article.tribe-events-calendar-month__multiday-event.tribe_events_cat-{$slug} .tribe-events-calendar-month__multiday-event-bar-inner,";
}, 10, 2 );@sem0812 there’s really nothing to work out in the plugin. The issue is how your theme works. The filter exists to override these sorts of issues with themes.
All I did was look into your calendar to see what was overriding the plugin’s CSS.
So I did a little digging and there are conflicts with the
themes/kadence/assets/css/tribe-events.min.css
override some things like#primary .tribe-events .tribe-events-calendar-month__multiday-event-bar-inner
and#primary .tribe-events .tribe-common-h8
causing this issue for you.You would need to modify or override these. You might be able to use the
teccc_fix_category_background_color
filter.In a quick test, adding a preceding
#primary
declaration to the specific affected CSS selectors seems to fix the problem.- This reply was modified 6 months, 2 weeks ago by Andy Fragen.
Can you share an example where an all day event is set to the category
external-events
?Can you share a screenshot of your Category Colors Settings?
Forum: Plugins
In reply to: [Core Rollback] Plugin not working within WordPress 6.6.1Not sure why it didn’t seem to work before, but glad it is now.
Forum: Plugins
In reply to: [Core Rollback] Plugin not working within WordPress 6.6.1After using Core Rollback the Re-Install link isn’t present or doesn’t point to the correct version?
Forum: Plugins
In reply to: [Core Rollback] Plugin not working within WordPress 6.6.1Can you share a screenshot of your
core-update.php
page? Dashboard -> Updates- This reply was modified 7 months ago by Andy Fragen.
- This reply was modified 7 months ago by Andy Fragen.
Forum: Plugins
In reply to: [Core Rollback] Plugin not working within WordPress 6.6.1The plugin works just fine on local. Is it possible you have some constant set to disable updating?
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Custom Category OrderingThe easiest way might be to fiddle with the category slugs to prefix with numbers and ensure the category name is how you want to display.
I’m sorry but I am unable to provide custom code in here as it would require much more information and regrettably I don’t have the bandwidth.