Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter darkm00n

    (@darkm00n)

    Problem solved.

    I missed to check the permalinks and you were right. It was not set up.
    Thank you.

    Check your featured image class name and manualy modify the plugin index.php file.
    Search for function sh_featured_image()

    modify the following lines:

    if( $hide ){ ?>
    <style>
    .has-post-thumbnail img.wp-post-image,
    .attachment-twentyseventeen-featured-image.wp-post-image{ display: none !important; }
    </style><?php
    }

    to

    if( $hide ){ ?>
    <style>
    .has-post-thumbnail img.wp-post-image,
    .attachment-twentyseventeen-featured-image.wp-post-image, .feature-image{ display: none !important; }
    </style><?php
    }

    I’m using Magazine Newspaper theme and my featured image class name is .feature-image

    • This reply was modified 5 years, 9 months ago by darkm00n.
    • This reply was modified 5 years, 9 months ago by darkm00n.

    You could try to overwrite manualy the wp-content/plugins/the-events-calendar/src/functions/php-min-version.php file.
    Search for the following function:

    function tribe_get_php_min_version() {
    return ‘5.6’;
    }

    Change the return value, but I do not guarantee all the functions will work properly.
    I used this trick and it works for me, but i’m not gonna upgrade the plugin any more.

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