B Gerling
Forum Replies Created
-
Forum: Plugins
In reply to: [pCloud Backup] Couldn’t find “access_token”I have the same problem. Any solution on the way anytime soon, please?
Thank you.Forum: Plugins
In reply to: [iQ Block Country] Password Protected Page = Backend?Hello @zitik81, after the above answers, the site owner did not want to continue investigation of this matter. The only idea I have is that the problem may disappear with an update of the MaxMind GeoIP data file. In case you find this confirmed or if you come up with a solution, please let me know.
Forum: Plugins
In reply to: [iQ Block Country] Password Protected Page = Backend?Thank you for your reply! The person who complained was a valid visitor, I will ask them.
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] After recent Update: html not supportedhello, the same problem (HTML showing in popups) is still existing for me too. In case it helps: My WP versions use german_formal language pack.
In this specific case, unfortunately, this is not possible. This is why I asked. (An “export settings/data” feature of the plugin – which could be imported into a database would help bigtime. Is your pro-version offering that maybe?)
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Hide featured imageflyingscottie, I have no idea if my solution is “professional” – but at least it works for me. I copied the content.php file from ../themes/twentyseventeen/template-parts/ into my childtheme (make sure you have an identical subdirectory structure) and erased 3 lines.
Find this code:
<?php if ( '' !== get_the_post_thumbnail() && ! is_single() ) : ?> <div class="post-thumbnail"> <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( 'twentyseventeen-featured-image' ); ?> </a> </div><!-- .post-thumbnail --> <?php endif; ?>and get rid of the 3 middle lines, to make it like this:
<?php if ( '' !== get_the_post_thumbnail() && ! is_single() ) : ?> <div class="post-thumbnail"> </div><!-- .post-thumbnail --> <?php endif; ?>In case you find a better solution, please let me know. Thanks!