• Resolved sickmint79

    (@sickmint79)


    i have avada theme with church installed demo. configured it all and didn’t have the calendar plugin or it turned on. eventually installed and activated it, as well as your color plugin. was working great! but single posts had a funky green header.

    i went to the avada options for the theme and the calendar, and the view single event detail. i changed the green header and black text to blue header and white text, which worked.

    however, after that 2 things happened to my month view. the first was the dates of the month became a dark grey, and the second was that the event colors disappeared, and now have a double bar which is grey.

    i found in the general menu the way to turn the day background back to white, which i did. and my legend is showing up as expected, single colored bar on the left. so do my events – on the hover over (tool tip?) of them on the calendar. however the events on the calendar no longer have single color left bars, but have bars on each side which are grey. how do i fix this? please advise.

    this can be seen for the month of june at my site, https://www.pointmeby.com/events/

Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Author Andy Fragen

    (@afragen)

    I’ll take a closer look when I get near a computer. Hopefully in the next couple of days.

    Plugin Author Andy Fragen

    (@afragen)

    A quick look seems that the Customizer output is overriding the plugin. You can add the following to _disable_ the Customizer output.

    
    add_filter( 'tribe_events_customizer_css_template', '__return_empty_string', 20 );
    

    I think that’s the correct filter name. I hope to have this worked out soon.

    Thread Starter sickmint79

    (@sickmint79)

    i’m not that familiar with wordpress/theme/plugin architecture – which file should i be sticking this statement into?

    thanks!

    Plugin Author Andy Fragen

    (@afragen)

    Sorry, this should go in your theme’s functions.php file. Please note that all Events Calendar Customizer changes will be overridden.

    Thread Starter sickmint79

    (@sickmint79)

    i tried plopping it in wp-content/themes/Avada/functions.php in a couple spots but it didn’t seem to change the page. i did it outside the body of any function. tried 2 browsers and ctrl+refresh so i don’t think it was a caching issue(?)

    Plugin Author Andy Fragen

    (@afragen)

    I must have given the incorrect filter name. I’ll try to find the correct one and provide it. Stay tuned.

    Plugin Author Andy Fragen

    (@afragen)

    To override the Avada CSS that is causing issues add the following to your theme’s functions.php file.

    
    add_filter( 'teccc_fix_category_background_color', function( $empty, $cat_selector ) {
    	return '.events-archive.events-gridview #tribe-events-content table .type-tribe_events' . $cat_selector . ',';
    }, 10, 2 );
    
    Plugin Author Andy Fragen

    (@afragen)

    I think I just fixed this in the latest release.

    Thread Starter sickmint79

    (@sickmint79)

    i tried it with no updates in the theme’s functions.php, and with cat colors 4.6.2 – but no dice.

    i tried adding the above as one of the first like in Avada/functions.php. tried a ctrl + refresh but no dice. this was done in ie and chrome, and is current state of the site.

    Plugin Author Andy Fragen

    (@afragen)

    It seems to be working when I look at your site. But I did use ?refresh_css.

    You may need to purge your page caching too.

    • This reply was modified 9 years, 4 months ago by Andy Fragen.
    Thread Starter sickmint79

    (@sickmint79)

    i figured the ctrl refresh would take care of that for me. no plugin is caching but maybe something was at play there.

    i commented out the function and just did a regular visit to the site and found the colors working. awesome! thank you for all the hard work!

    Plugin Author Andy Fragen

    (@afragen)

    I’m glad we got it worked out.

    Please leave a review if you can.

    Thread Starter sickmint79

    (@sickmint79)

    done!

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘colors not working?’ is closed to new replies.