tjos123
Forum Replies Created
-
Forum: Plugins
In reply to: [Email Template Customizer for WooCommerce] Password reset template not usedHi @villasupport, thanks for your prompt response. It was already set to HTML on the WooCommerce Settings > Emails.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Orders cancelled before inserted hoursHi @rvola ! Thanks for your reply. I did not change the clock ever since the site was created. But I will try your advice. There are 2 identical “woo_cao_cron” – Do I cancel both? Thanks!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] SymbolsHi @yordansoares! Sorry I wasn’t clear at first. I was referring to the emojis on the meta of the product.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] SymbolsHi @yordansoares. I certainly only used this plugin. It’s good enough for my usage, so I have never tried others. But yeah, it’s rather strange too as I would have thought that the emojis aren’t supported.
Yes if you could share the code snippet for me to test out. Thank you.
Forum: Plugins
In reply to: [Customize Login Image] No more custom CSSHi @apasionados. I applied the same old CSS to Customizer but nothing changes.
Forum: Reviews
In reply to: [WooCommerce Cancel Abandoned Order] Simple and does exactly as it shouldHey @rvola! It’d be interesting to see additional features to this, while still keeping it lightweight. It’s really a great plugin! Hopefully you keep this going.
Take care.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Stripe Gateway after updateHi @rvola! Thank you so much for the update!
Forum: Plugins
In reply to: [WooCommerce] Add billing and shipping information to Customer Payment PageJust want to add that this hasn’t been resolved.
It’s strange why the Customer Payment Page shows all information (product, delivery date, payment mode etc) but not the customer’s billing and shipping information that is attached to the order.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Shipping phoneThanks @yordansoares. Have got it fixed with a slightly different code.
Can I ask if there will be an update for the plugin to fix the problem without a code in the future?
Forum: Plugins
In reply to: [F4 Shipping Phone and E-Mail for WooCommerce] woocommerce update 5.6Thanks for the heads up @faktorvier ??
Forum: Plugins
In reply to: [F4 Shipping Phone and E-Mail for WooCommerce] woocommerce update 5.6You are right, I’m using that plugin. And it does seem like they are not ready yet.
Thanks so much for the hook! I had changed it to p class instead so that it doesn’t create a break for the addresses.
It’s perfect now!
Forum: Plugins
In reply to: [F4 Shipping Phone and E-Mail for WooCommerce] woocommerce update 5.6Hi @faktorvier . Thanks for getting back. I had tried the hook, but it will remove the shipping phone from pdf invoices.
Forum: Plugins
In reply to: [F4 Shipping Phone and E-Mail for WooCommerce] woocommerce update 5.6Hi @faktorvier. Has this been fixed yet? I do still see the double shipping phone number on the current version.
Forum: Plugins
In reply to: [WooCommerce] Add billing and shipping information to Customer Payment PageHi, that’s ok. I dont need them to edit. But I would really love to have the billing information to be shown at least – without editing.
<h3><?php _e( 'Billing details', 'woocommerce' ); ?></h3> <?php do_action( 'woocommerce_before_checkout_billing_form', $order ); ?> <div class="woocommerce-billing-fields__field-wrapper"> <?php $fields = WC()->checkout->get_checkout_fields( 'billing' ); foreach ( $fields as $key => $field ) { $field_name = $key; if ( is_callable( array( $order, 'get_' . $field_name ) ) ) { $field['value'] = $order->{"get_$field_name"}( 'edit' ); } else { $field['value'] = $order->get_meta( '_' . $field_name ); } woocommerce_form_field( $key, $field, $field['value'] ); } ?> </div> <?php do_action( 'woocommerce_after_checkout_billing_form', $order ); ?>
Forum: Plugins
In reply to: [WooCommerce] Billing and Shipping City@lorro, you are right.
The field value works for me. But I can’t remove the Optional or make it required.
Tried this code as welladd_filter( 'woocommerce_default_address_fields' , 'optional_default_address_fields' ); function optional_default_address_fields( $address_fields ) { $address_fields['city']['required'] = true; return $address_fields; }