Scott @ BAKKBONE Australia
Forum Replies Created
-
That worked – thanks!
We’re using woo 7.1.1 on wp 6.1.1
Thanks
Hi again
I’ve been able to locate the plugin conflict – W3 Total Cache, if “Disk: Enhanced” page caching is on, the error persists. If I change to “Disk: Basic” or disable W3TC the error does not present.
Perhaps uiBuilder is calling something frontend-related that the cache affects?
Hi again
Just tried that with the same outcome unfortunately
Thanks
No, nothing in php errors, only the console and displayed errors as above
Thanks
Update – from console at the moment the error displays:
https://snipboard.io/z9eVJE.jpgForum: Plugins
In reply to: [YITH WooCommerce Gift Cards] Duplicate ImageThank you – that code snippet resolves the issue – hoping it will be included in a future release
All the best
Forum: Plugins
In reply to: [YITH WooCommerce Gift Cards] Duplicate ImageForum: Plugins
In reply to: [WooCommerce Address Book] Checkout Fields Manager CompatibilityMakes sense once I think about it!
Much appreciated, that worked a charm!
Forum: Plugins
In reply to: [WooCommerce Address Book] Checkout Fields Manager CompatibilityThanks Matt – will have a look through your provided sample and see how we go. I was following that exact link to create the sample that I did, under the “Adding Custom Shipping And Billing Fields” section. Because the woocommerce_billing_fields and woocommerce_shipping_fields filters are only mentioned in passing in the first section, I hadn’t realised they were critical to applying the fields throughout.
Cheers! ??
Forum: Plugins
In reply to: [WooCommerce Address Book] Checkout Fields Manager CompatibilityActually, even the standard filters aren’t working for me. eg.:
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { $fields['shipping']['shipping_company']['label'] = 'Business Name'; $fields['billing']['billing_company']['label'] = 'Business Name'; $fields['shipping']['shipping_phone'] = array( 'label' => __('Recipient\'s Phone', 'woocommerce'), 'placeholder' => _x('Phone', 'placeholder', 'woocommerce'), 'required' => true, 'class' => array('form-row-wide'), 'clear' => true ); return $fields; } add_action( 'woocommerce_admin_order_data_after_shipping_address', 'my_custom_checkout_field_display_admin_order_meta', 10, 1 ); function my_custom_checkout_field_display_admin_order_meta($order){ echo '<p><strong>'.__('Phone From Checkout Form').':</strong> ' . get_post_meta( $order->get_id(), '_shipping_phone', true ) . '</p>'; }
These changes appear in checkout/meta, but not in the address book.
Forum: Plugins
In reply to: [WooCommerce Address Book] Checkout Fields Manager CompatibilitySame issue if I add fields via Booster for WooCommerce. Either option would be welcomed
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] Force ShippingThat fixes the issue of clicking the text, thank you. Would still strongly recommend including a function to change the wording from “Ship to a different address?” to “Shipping details”, as the question no longer makes sense when they don’t have a choice
Forum: Plugins
In reply to: [YITH WooCommerce Gift Cards] Duplicate ImageSettings within product:
https://snipboard.io/be9Wp2.jpgOutput:
https://snipboard.io/HtYQIF.jpgIf I leave the product image blank, the output is:
https://snipboard.io/OoZhB3.jpg
– note that although this resolves the duplicate display issue, the default selected gift card image is nothing (to the left of the first image), thus showing the placeholder imageForum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] Force ShippingIn 6.0.8, the checkbox is hidden but clicking the text of “Ship to a different address?” still has its original function, so though the shipping fields are required the shipping rate calculates based on the billing address.
Additionally, the text “Ship to different address?” no longer makes sense when forcing shipping address. Can I suggest implementing something similar to: