danielgm
Forum Replies Created
-
Can you already say if it will supply an e-mail address?
Forum: Plugins
In reply to: [hCaptcha for WP] Activate on form by form basisActually it is coded in such a way that the captcha is added to every CF7 form even if it does not contain the [cf7-hcaptcha] shortcode.
Does this make sense in a way that I am overlooking? Otherwise, I would suggest adding a new parameter to the plugin settings, something like:
Enable Contact Form 7 Addon (all forms)
Enable Contact Form 7 Addon (only based on shortcode)Besides that, a new field type “hCaptcha” ought to be added to the CF7 form constructor GUI. Not sure if CF7 supports that. Alternatively, it should at least be documented that there are shortcodes. I had no idea it does.
Forum: Plugins
In reply to: [hCaptcha for WP] How to achieve invisibilityOk, so I have set the difficulty level to easy and the challenge is still displayed every single time on a dozen page views using different browsers, always spending some time on-site before visiting the page with the captcha. Surely this means there is something missing in the way the plugin implements hCaptcha for invisibility support, no?
- This reply was modified 5 years, 10 months ago by danielgm.
It’s not always good for usability, I agree. Ok, I will script this myself where appropriate. Great to hear you are going to implement hash-based navigation!
Lovely, I had overlooked that- thanks!
Right… the search function, including when called by URL, ought to be blocked rather than simply hidden.
Forum: Themes and Templates
In reply to: [Atomic Blocks] No page-specific theme background imagesYes, that can always be done. Ok, thanks
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Unable to write custom rules to your .htaccess.it is https://www.ohmyquiz.io, paid-only plugin I am afraid. Maybe you have some general debugging tips for me and which could be added to your FAQ later?
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Unable to write custom rules to your .htaccess.Hm… it contains flush_rewrite_rules in one place, but if I comment that out, the conflict remains. Any other ideas what to look for?
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Unable to write custom rules to your .htaccess.I found the conflicting plugin, but it does not contain flush_rules anywhere. What other functions might be the cause?
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Unable to write custom rules to your .htaccess.Same issue here. Reinstalling the plugin and setting htaccess to 777 do not help. I am also using a child theme, single WP install, no Super cache. The error message seems flawed…
- This reply was modified 7 years, 6 months ago by danielgm.
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] Please add support for optimized meta dataIs the plugin author not reading this?
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] Suggest filter fb_og_publisherIs the plugin author not reading this?
Forum: Plugins
In reply to: [Temporary Login Without Password] Paste login link directly into e-mailsI guess you could make it even fancier by putting the first name of the recipient, if indicated, between ‘Hello’ and that comma, since it is known to the plugin:)
Forum: Plugins
In reply to: [Temporary Login Without Password] Paste login link directly into e-mailsThanks for the update. I just had a look.
The way you insert <br> tags in the mail body (using \n in conjunction with PHP’s nl2br) is causing them to be displayed as tags instead of interpreted, at least in Apple Mail.
I researched it and as per RFC2368, which defines mailto:, it is explicitly stated that the only valid way to generate a line break is with %0D%0A.
I didn’t want to make that part of the translatable string so I rewrote your code like so:
$double_line_break = '%0D%0A%0D%0A'; // as per RFC2368 $mailto_greeting = __( 'Hello,', 'temporary-login-without-password' ); $mailto_instruction = __( 'Click the following link to log into the system:', 'temporary-login-without-password' ); $mailto_subject = __( 'Temporary Login Link', 'temporary-login-without-password' ); $mailto_body = $mailto_greeting . $double_line_break . $mailto_instruction . $double_line_break . $temporary_login_link;includes/class-wp-temporary-login-without-password-common.php
…which works in Apple Mail and also improves on the English language.
I hope you will use it for the next version.
- This reply was modified 8 years, 1 month ago by danielgm.