Tecca
Forum Replies Created
-
While testing I seem to be getting two emails via the MailChimp webhook after confirming the subscription (and thus two coupon codes for the test email). Very strange.
EDIT: seems to happen only when the sample code from this plugin is used in functions.php. Tried it without having a custom prefix for the discount code and it worked fine. Would definitely like to be able to use a custom prefix without this happening, though.
- This reply was modified 7 years, 7 months ago by Tecca.
(Missed the chance to edit my post above).
Also, while it might not be a problem for everyone, my register form is longer than the screen on most mobile devices. Seems I couldn’t scroll down to see the rest of the form. Personally, I fixed it using
position: absoluteonbody .woo-login-popup-sc-modal. With fixed, it simply scrolls down with the page (this plugin doesn’t remove overflow on the body when the modal is popped open, so the form just scrolls down with you).Forum: Plugins
In reply to: [WooCommerce Login Popup and Shortcodes] How to redirect to ‘My account’?Have you guys tried a redirect code or plugin like this? https://wordpress.org/plugins/woo-login-redirect/
I don’t see why it wouldn’t work, but I haven’t tried it.
I agree. As well, the
body .woo-login-popup-sc-modal .clearclass doesn’t haveclear: bothin it. With a Recaptcha plugin, this makes the button on the lost password form overlay on top of Google’s captcha.Before fix: https://i.imgur.com/8oL3zLi.png
After fix: https://i.imgur.com/JjyvTTn.pngThe actual CSS uses height:0px, which isn’t meant for clearing floats.
Removing “body” from the CSS would be fine for backward compatibility since it won’t change anything. The classes and IDs are all unique as-is.
Forum: Plugins
In reply to: [WooCommerce Login Popup and Shortcodes] Reset Password not workingI don’t believe that’s an issue with this plugin in particular, unless my set up is fine and there’s a bug in some.
Are you by chance using the NoCAPTCHA ReCAPTCHA for WooCommerce plugin? That’s what was breaking my lost password functionality. If you are, there’s a fix in this topic: https://wordpress.org/support/topic/forgot-password-broken/
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA for WooCommerce] Forgot password brokenI can confirm the combination of the two things above fixes the problem. Hopefully it will be fixed in the next update of this plugin.
Just for clarity, here’s the entire fix. Simply replace the lost-password.php file with this:
<?php /* Fix from: https://wordpress.org/support/topic/forgot-password-broken/ */ /** * Class WC_Ncr_Lost_Password_Captcha */ class WC_Ncr_Lost_Password_Captcha extends WC_Ncr_No_Captcha_Recaptcha { public static function initialize() { // initialize if login is activated if ( isset( self::$plugin_options['captcha_wc_lost_password'] ) || self::$plugin_options['captcha_wc_lost_password'] == 'yes' ) { // adds the captcha to the login form add_filter( 'woocommerce_lostpassword_form', array( __CLASS__, 'display_captcha' ) ); // authenticate the captcha answer add_filter( 'allow_password_reset', array( __CLASS__, 'validate_lost_password_captcha'), 10, 2 ); } } /** * Verify the captcha answer. * * @return WP_Error */ public static function validate_lost_password_captcha( $allow, $user_id ) { if ( ! isset( $_POST['g-recaptcha-response'] ) || ! self::captcha_wc_verification() ) { return new WP_Error( 'empty_captcha', self::$error_message ); } remove_filter( 'allow_password_reset', array( __CLASS__, 'validate_lost_password_captcha' ), 10 ); return $allow; } }Yes, this would be great. As it is, it’s bad user experience to have them make selections (e.g. “Large” + “Blue”) and then something comes up saying it’s not available.
Crossing out the variations that don’t exist would be great. Similar to how this plugin does it using WooCommerce’s default setting:
https://www.useloom.com/share/a830d580595e4c5b88b4f4424a7dfc18
Forum: Plugins
In reply to: [GDPR] Woocommerce Registration Privacy PolicyAhh, yes, that was the issue. Apologies, hadn’t even noticed the URL! I assumed it was automatically generated based on the Privacy page selection in the General section.
Thanks!
Forum: Plugins
In reply to: [GDPR] Woocommerce Registration Privacy PolicyYes, the Privacy Policy text links to the My Account page for me as well, and it’s not only on the registration page. It also shows up when you use the Privacy Settings button where the same string of text is shown.
Forum: Plugins
In reply to: [GDPR] Emails get delivered to noreply@example.comThanks for the response. BCC doesn’t seem to be working on my end, however. My test email(s) don’t get emailed, only the bounce from noreply from Amazon’s servers.
Forum: Plugins
In reply to: [GDPR] woocommerce accountJust showing interest in this as well. I know you’ll already have it ready soon, so great. Started looking into GDPR compliance a little later than I should have, and this plugin seems really handy (just installed it).
Forum: Plugins
In reply to: [Simple Code Highlighter] Console Errors Prettify.cssI just went into plugins/simple-code-highlighter/js/pretty.js and hardcoded the URL into it, tbh. Easy enough fix until the plugin dev updates it.
Forum: Plugins
In reply to: [Email Subscribers - Group Selector] Error with enqueuing CSSHey there,
This issue still persists with the latest version. Removing the slash fixes the URL and the console error no longer exists.
Forum: Plugins
In reply to: [Amazon Link Localization by BestAzon] SSL – Mixed content warningsGreat, thanks for the reply! You’re right, the plugin works regardless, so there’s no issues there.
I’ve marked this as resolved, thank you for your time.
Forum: Plugins
In reply to: [Email Subscribers - Group Selector] group selectedIt would be great to have this feature if you’re planning it. That way, it’s one step less for the subscriber if we automatically set an “All News” group in case they don’t care to customize what they receive from us. Since we know end users can be fairly lazy, haha.
Otherwise, thanks for the plugins, they work great! Keep up the awesome work.