Olivier Broyard
Forum Replies Created
-
Forum: Plugins
In reply to: [WP 2FA - Two-factor authentication for WordPress] How many login attemptsThank you Lucian for the detailed and clear info π
I had my phone stolen last year and it was a nightmare accessing some 2FA sites, so I’m being cautious now, trying to strike a good balance between safety and recoverability.
Thanks again for your time π
Forum: Plugins
In reply to: [WP 2FA - Two-factor authentication for WordPress] How many login attemptsThank you for your reply π
Well, then we go back to my initial inquiry. I find 6-digit backup codes dangerous. I read online that they can be brute forced in a matter of minutes. Assuming an attacker has passed the first barrier by correctly guessing the username & password, it would be trivial for them to crack a 6-digit code. Even if after 3 attempts they are sent back to the username/password login page. Wouldn’t you agree with this reasoning?
Following on what I just wrote, suppose I lose my phone and therefore access to my authenticator app but can still access the database of my website through my host. Would deleting the WP 2FA plugin allow me to access my website with only the username/password? (if you think it’s safer to answer this question by sending me a message rather than answering publicly on this board, please do message me).
- This reply was modified 1 year, 1 month ago by Olivier Broyard. Reason: wording
Forum: Plugins
In reply to: [WP 2FA - Two-factor authentication for WordPress] How many login attemptsHi Lucian,
Thank you for the detailed explanation π
I use an authenticator app (Aegis). But what if I lose access to my phone? How can I also have the OTP over email method from the login page?
You can try the latest plugin version on GitHub; this should solve the issue with DNT enabled.
https://github.com/Really-Simple-Plugins/complianz-gdpr
This is currently being tested for the next release, so you could also just wait for the upcoming release of the plugin and update at that point.
On github the latest version is still v6.4.7 Do you know when the next update will be released?
Hi Aert,
Thank you very much for the quick response π
I look forward to the plugin update. In the meantime I will disable that setting in Complianz since it solves the issue.
Thank you Adam. I will leave as it is then, if the field is not required then I won’t add a blank field, otherwise people might leave it blank. And my purpose was to know people’s gender without asking them directly and without having to guess with their name.
Thank you again to you and Luis for the clear and precise assistance π
Thank you Adam π Right now, the code is like this:
<?php //customization for EN form function wpmu_forminator_customize_name_prefixes_en( $prefixes ) { $prefixes['Mr'] = 'Mr.'; $prefixes['Ms'] = 'Ms.'; unset($prefixes["Mrs"]); unset($prefixes["Miss"]); unset($prefixes["Dr"]); unset($prefixes["Prof"]); unset($prefixes["Mx"]); return $prefixes; } // customization for FR form function wpmu_forminator_customize_name_prefixes_fr( $prefixes ) { $prefixes['Mr'] = 'M.'; $prefixes['Ms'] = 'Mme'; unset($prefixes["Mrs"]); unset($prefixes["Miss"]); unset($prefixes["Dr"]); unset($prefixes["Prof"]); unset($prefixes["Mx"]); return $prefixes; } add_filter( 'forminator_cform_render_fields', 'wpmu_forminator_customize_name_prefixes_trigger', 10, 2 ); function wpmu_forminator_customize_name_prefixes_trigger( $wrappers, $form_id ) { // EN form if ( $form_id == 1019 ) { add_action( 'forminator_name_prefixes', 'wpmu_forminator_customize_name_prefixes_en', 10, 1 ); } // FR form if ( $form_id == 651 ) { add_action( 'forminator_name_prefixes', 'wpmu_forminator_customize_name_prefixes_fr', 10, 1 ); } return $wrappers; }(there was a typo in the code above, “formiantor” instead of “forminator”; there’s also another default prefix called “Mx” which I also wanted to exclude)
Now for both forms I have only two choices, which is what I wanted π Thank you again π
This is of less importance, but is there a way:
- to make the prefix field a required field?;
- to show the field blank until people have selected either Mr or Ms?
Thank you for your help. I just tested the code locally and it works π
Except that now the dropdown lists contain both the items that I modified and all the others (mrs, miss, dr etc.) So I need to remove the items from the dropdown list that I don’t need. How can I do that?
This request has been already shared with our developers and weβve just put it on our improvements βto doβ list.
Great, I’ll look forward to it π
As for now, thereβs a workaround that could work for you. It would require adding a small piece of code to the site:
I see one problem with that. The prefixes would be changed on all forms. But my site is bilingual (English & French), and I want each form to have its own prefixes (Mr. & Ms. for the English form; M. & Mme for the French one). Is it possible to make the code you suggested form specific?
At the moment I’m using the “Select” field for choosing a prefix, but it doesn’t look good, the field is simply too large (example in English).
- This reply was modified 3 years, 1 month ago by Olivier Broyard. Reason: added question in the paragraph before last
Forum: Plugins
In reply to: [Polylang] String text not available in translationsnavigate to Complianz > Settings > General and click the Save button
That’s all that was needed! And now the string is available in Polylang translations.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] reCaptcha cookie not blockednavigate to Complianz > Settings > General and click the Save button
THANK YOU! That’s all I had to do, now that string is available in the Polylang translations.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] reCaptcha cookie not blocked@jarnovos Do you know where I can find that string? Is it part of WordPress or is it from a plugin? I’m not getting any reply from Polylang regarding this issue and I’m at a loss as to what I should be doing to fix this.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] reCaptcha cookie not blockedThank you for your reply.
I use the Polylang plugin and that “blocked_content_text” string is not available in the translations. There’s tons of Complianz stuff in there but not that π
Problem solved: the Load form using AJAX setting was not disabled.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] reCaptcha cookie not blockedThank you for the help. The Load form using AJAX setting was not disabled, that’s what I was missing.
I have another problem now. The message asking to accept cookies to enable the content is only in French, even on the English form. Is it possible to have this message in another language, preferably the same as the form page?
- This reply was modified 3 years, 2 months ago by Olivier Broyard. Reason: missing word