darkm00n
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Widget wrong URLProblem solved.
I missed to check the permalinks and you were right. It was not set up.
Thank you.Forum: Reviews
In reply to: [Hide Featured Image] It just doesn’t work, simple as that.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
Forum: Plugins
In reply to: [The Events Calendar] Help! how do I get a copy of 4.7.4 to roll back to?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.