user9876789
Forum Replies Created
-
Also, I am using woocommerce shortcodes, not blocks.
The client has come back to say they are getting errors signing up again. I was able to replicate this time. I have added recaptcha v3. However I now have two new issues.
I ticked the box to say don’t show the badge. However, the badge is showing on all pages. Also, the cookies for Recaptcha are loading on all pages not just single product so when I run Lighthouse my Best Practices score is reduced to 78 due to 2 cookies now in use _GRECAPTCHA and NID
Forum: Plugins
In reply to: [Sokol: Smart WooCommerce Search] w3 Validate issueGreat thank you!
Great thanks, that works!
Thanks I have changed the option to the REST API one. I have informed the client and will wait to hear from them, their customers are pretty good at letting them know they’re getting errors so should know if its worked within a few days / a week
Forum: Plugins
In reply to: [Fastly] Plugin closedFastly have since released an update to the plugin to improve security and the plugin is back in the plugin library
Forum: Plugins
In reply to: [Fastly] Plugin closedI have been messaging them via their support email – the last update was today to say: We are actively working on releasing a new plugin version. We’ll keep you posted.
Forum: Plugins
In reply to: [MyParcel] Fatal error if WooCommerce Table Rate Shipping is updatedThanks I’ve updated to that version of myParcel and have been able to update to the latest of Table Rate Shipping with no issues.
@soprano – try using
wp_dequeue_script( 'cwginstock_js' ); wp_dequeue_script( 'sweetalert2' ); wp_dequeue_script( 'cwginstock_popup' );instead. That worked for me.
Forum: Plugins
In reply to: [MyParcel] Fatal error if WooCommerce Table Rate Shipping is updatedApologies I have just sent the latest version – it’s now on 3.1.9 – but looking at the change log I didn’t see anything that should have sorted the issue. Let me know if it doesnt error for you
Forum: Plugins
In reply to: [MyParcel] Fatal error if WooCommerce Table Rate Shipping is updatedI’ve sent it to the email address above 🙂
Forum: Plugins
In reply to: [MyParcel] Fatal error if WooCommerce Table Rate Shipping is updatedYes I am using the latest release – do you have an email address I can send it to?
Hello, thanks for adding this. I’ve just come to test it – no matter what value I put in the new field it just sets the max height at 400px, it’s not using my value. Can you double check it’s working? I’ve tried 500 and 500px.
Forum: Plugins
In reply to: [MyParcel] Fatal error if WooCommerce Table Rate Shipping is updatedWe also have the same issue. The front end looks OK but causes a critical error on the admin.
Forum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] How to get meta dataUsing $meta_data = wc_get_order_item_meta( $item_id, ‘_ywapo_meta_data’, true ); worked for getting a text message field
I also have a select dropdown with the name ‘Select an occasion (if applicable)’ which lists various events which someone selects. I call that onto the PDF packing slip with:
<?php $occasion = $item->get_meta('Select an occasion (if applicable)'); ?> <td>Occasion: <?php if ($occasion != null && $occasion != ''): echo $occasion; else: echo 'N/A'; endif; ?></td>Since version 4.6.0 this has stopped working. I’ve tested 4.6.0 and 4.7.1 and it doesn’t work on those either. 4.5.0 is the last one it works on. Could you advise if something has changed and how I can call that data now?