63N
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] Use of sub tag for form disclaimerFYI I’m currently using the code found here to change the
<sub>
tag to the<small>
tag.As mentioned previously I spun up a plain vanilla site with only Storefront and WooCommerce installed and the same issue persists. See test site here: https://smiling-humpback.jurassic.ninja
Edit: Safari version 14.0.3
The screen also jumps sometimes when clicking the select inputs and/or closing the submenu by clicking elsewhere on the page.Something seems to have been updated, because the drop downs seem to line up a bit better now when they open downwards. When they open upwards they still look miss-aligned. See pasteboard here.
The second screen capture shows how the submenu is selected on mouse-up, so it looks like it just opens and then instantly closes unless you click and hold on it. Or you can click at the very top of the select input where the submenu doesn’t cover the input underneath, so it works as expected, staying open with a single click and release of the mouse button. See pasteboard here.
Ok, all good. Thanks for clearing that up!
Yeah, there must be something else going on, because I’ve tried logging in as different users and the setting seems to be working correctly with the checkbox unticked… I may try looking into more, but it’s not a major issue if it works for everyone else.
The plugin can’t recognise that an email address is already subscribed and tick it automatically based on that can it?
And people can’t get unsubscribed based on that checkbox can they?
- This reply was modified 3 years, 8 months ago by 63N.
Just noticed on Chrome for Windows the same problem is happening. It makes for a frustrating and unintuitive user experience.
Forum: Plugins
In reply to: [Constant Contact + WooCommerce] Move the opt-in checkboxOk, yes please keep me updated.
Correct. I have the setting set to “No” and the checkbox is still auto-checked. I’ve tried emptying the cache, signing out and in again, the checkbox is still ticked when it shouldn’t be. I also tried changing the setting to “Yes” and back to “No”… still the same problem, it’s always auto-checked.
… Just thought, it doesn’t recognise that my email address is already signed up and auto-checks the checkbox because of that, does it?
- This reply was modified 3 years, 9 months ago by 63N.
Forum: Plugins
In reply to: [WooCommerce] Add admin note when automatic emails are sentI think I’ve found the right WooCommerce hook. This is tested and working for new paid orders…
add_action( 'woocommerce_order_status_pending_to_processing_notification', 'custom_add_note_order_prcesssing' ); function custom_add_note_order_prcesssing( $order_id ) { $order = wc_get_order( $order_id ); // The text for the note $note = 'Customer email sent: order recieved'; // Add the note $order->add_order_note( $note ); }
I’d like to include the email title and/or subject in the note too if anyone can help with that?
Yes, I have that custom code in a child theme and have tested with the standard Storefront theme.
I created a site here: https://established-ferret.jurassic.ninja/shop/
The problem still persists on that new site. It seems as though the problem is only happening on Safari for Mac though (version 14.0.2).
Chrome 87.0.4280.141 and Firefox 80.0.1 don’t seem to have the same problem.
- This reply was modified 3 years, 10 months ago by 63N.
It’s happening on the checkout page, but we’re also using a custom script to enqueue the select2/selectWoo script on product pages and catalogue pages…
add_action('wp_enqueue_scripts', 'custom_select_dropdown'); function custom_select_dropdown() { if( is_shop() || is_product_category() || is_product_tag() || is_page( 1657 ) || is_product() ) { wp_enqueue_style( 'select2'); wp_enqueue_script( 'selectinit', get_stylesheet_directory_uri() . '/js/select2-init.js', array( 'selectWoo' ), true ); } }
I’ll have to send you login details to be able to add products to your cart and see the checkout page – how should I do that?
On a possibly related note I’ve noticed the page jumps on occasion when opening and closing the dropdown menus.
Version 5.3.3 does not seem to have made any difference. Are you not able to reproduce the problem?
I have tried version 5.3.3 and it doesn’t seem to be fixed.
I’ve tried uploading the customised template file to:
child-theme > woocommerce-checkout-manager > order > order-upload-files.php
and…
child-theme > woocommerce-checkout-manager > templates > order > order-upload-files.php
and…
child-theme > woocommerce > order > order-upload-files.php
None of which seem to work.
- This reply was modified 3 years, 10 months ago by 63N.
This has been fixed by the Multi Currency (VillaTheme) developers, and I believe will be released in a future update.
See discussion on the developer’s forum: https://villatheme.com/supports/topic/multi-currency-conflict-with-storefront-theme-and-memberships/
Forum: Plugins
In reply to: [WooCommerce Accordions] Accordion and moving tabs up the pageOh I see @benjaminblue ! So you’re not using this plugin or the WooCommerce inbuilt functionality at all, you’re just loading jQuery accordion and creating the tabbed content yourself?