Forum Replies Created
-
AuthorPosts
-
Mathew
ParticipantThis reply is private.
Mathew
ParticipantThanks Courtney.
November 28, 2017 at 8:13 am in reply to: Photo view doesn’t display correctly with Avada Theme #1393729Mathew
ParticipantHello,
There’s a conflict between Avada’s and TEC’s Isotope library with only one way to resolve the issue until TEC updates the library.
It looks like you are using the Avada Child Theme, which is good and will make this easy.
First download the Isotope library from https://isotope.metafizzy.co/.
Place the downloaded file, isotope.pkgd.min.js, in the Avada-Child-Theme folder.
Add the following to your functions.php in the Avada-Child-Theme folder:
// Enqueue latest version of isotope in TECProadd_action('wp_enqueue_scripts', 'custom_isotope_js');
function custom_isotope_js() {
wp_enqueue_script(
'tribe-events-pro-isotope',
get_stylesheet_directory_uri() . '/isotope.pkgd.min.js',
array('tribe-events-pro-imagesloaded')
);
}
Hope this helps.
November 22, 2017 at 5:29 pm in reply to: No (Back to) All Events Link on Single Events Page #1389605Mathew
ParticipantLance,
(1) The event-mod.css is part of the Enfold theme’s customization. Updating the TEC plugin will not effect any changes you make to it. Updating the Enfold theme will.
(2) The CSS from your previous post could be placed in the Quick CSS of Enfold, or better yet, the style.css file in the child theme, if you are using a child theme with Enfold. You may want to add an !important declaration to the CSS as follows:
.single-tribe_events .tribe-events-back {
display: block !important;
}
Hope this helps.
November 22, 2017 at 5:39 am in reply to: AVADA Fusion Builder on singel Event backend edit? #1388913Mathew
ParticipantSavage,
You can use the Fusion Builder with The Events Calendar. Please see the documentation on Avada’s support site.
https://theme-fusion.com/fb-doc/technical/fusion-builder-custom-post-types/
Hope this helps.
Mathew
ParticipantBrendan,
This is not a conflict. You can see the same results in the page source of the TEC Demo site.
However, the id’s are unique for the stylesheet, thus the redundant loading. Not sure what the double-dash is all about on the pro-override.
id='tribe_events-widget-calendar-pro-style-css'
id='tribe_events--widget-calendar-pro-override-style-css'
id='tribe_events-widget-calendar-pro-override-style-css'
November 14, 2017 at 4:26 pm in reply to: The Events Calendar Conflicting with WooCommerce Add Product Admin Panel #1383078Mathew
ParticipantThis reply is private.
November 9, 2017 at 1:38 pm in reply to: Event Preview Image Displays at 225%, tribe-events-full.min.css displays 100% #1379402Mathew
ParticipantNick,
Jennifer is correct. There’s nothing out-of-the-box in the plugin that would set this to 225%. However it looks like the default CSS files have been modified.
This file should be minified, but it’s not. It contains the CSS causing the issue (line 627).
You could rename this file through FTP and upload the one that comes within the TEC plugin to that location.
Hope this helps.
Mathew
ParticipantThis reply is private.
Mathew
ParticipantThis might be by design and not an issue. The changes in timezone calculation may have been implemented to address daylight saving time issue that other reported. The example I gave is for an event that spans over the upcoming DST on March 12th, so it may be correct. Time will tell.
Mathew
ParticipantKishore,
The page source still shows remnants of being compressed. You may need to clear the cache after the changes from the Tools menu in WP-Rocket (or manually). Alternatively, you may need to deactivate options to troubleshoot the issue. After making any changes, you may need to clear the cache.
Hope this helps.
Mathew
ParticipantKishore,
It looks like WP-Rocket is minifying the scripts and CSS of the Events Calendar. The scripts and CSS in The Events Calendar are already minified. You need to exclude The Events Calendar scripts, CSS and pages from WP-Rocket caching and minification. Please refer to WP-Rocket’s documentation on how to accomplish this.
Hope this helps.
Mathew
ParticipantUwe,
Here’s a work-around that may resolve the conflict.
Download the latest version of the isotope script from Metafizzy. Place the downloaded isotope.pkgd.min.js file in your Avada-Child-Theme folder.
Insert the following in the functions.php within the Avada-Child-Theme folder.
// Enqueue version 3.0.4 of isotope in TECPro
add_action('wp_enqueue_scripts', 'custom_isotope_js');function custom_isotope_js() {
wp_enqueue_script(
'tribe-events-pro-isotope', '3.0.4', true,
get_stylesheet_directory_uri() . '/isotope.pkgd.min.js',
array('tribe-events-pro-imagesloaded')
);
}
Test the Fusion Slider with the shortcode that was exhibiting the issue.
Hope this helps.
Mathew
ParticipantThis reply is private.
-
AuthorPosts
