Mathew

Forum Replies Created

Viewing 15 posts - 91 through 105 (of 264 total)
  • Author
    Posts
  • in reply to: Single event venue map pin hover text #1394208
    Mathew
    Participant

    This reply is private.

    in reply to: Single event venue map pin hover text #1393730
    Mathew
    Participant

    Thanks Courtney.

    in reply to: Photo view doesn’t display correctly with Avada Theme #1393729
    Mathew
    Participant

    Hello,

    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 TECPro

    add_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.

    in reply to: No (Back to) All Events Link on Single Events Page #1389605
    Mathew
    Participant

    Lance,

    (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.

    in reply to: AVADA Fusion Builder on singel Event backend edit? #1388913
    Mathew
    Participant

    Savage,

    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.

    in reply to: How to stop redundant .css files loading #1386314
    Mathew
    Participant

    Brendan,

    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'

    Mathew
    Participant

    This reply is private.

    Mathew
    Participant

    Nick,

    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.

    https://www.shallowford.org/wp-content/plugins/the-events-calendar/src/resources/css/tribe-events-full.min.css

    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.

    in reply to: TEC 4.6 Abstract.php changes #1374321
    Mathew
    Participant

    This reply is private.

    in reply to: TEC 4.4.19 JSON_LD Timezone Changes #1373958
    Mathew
    Participant

    This 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.

    in reply to: Cart Buttons Display Off #1372666
    Mathew
    Participant

    Casper,

    This is a known issue with your theme.

    Hope this helps.

    in reply to: Events not showing on Mobile #1367231
    Mathew
    Participant

    Kishore,

    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.

    in reply to: Events not showing on Mobile #1367225
    Mathew
    Participant

    Kishore,

    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.

    in reply to: Full size slider – isotope issue #1367076
    Mathew
    Participant

    Uwe,

    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.

    in reply to: Dequeue Isotope #1366935
    Mathew
    Participant

    This reply is private.

Viewing 15 posts - 91 through 105 (of 264 total)