nicetig
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Footer goes on the next pageHi @yordansoares,
Try reinstall plugin fonts and it didn’t work. However, i was going through the settings again and managed to get it fixed by not selecting the option “Output to HTML” under the Advanced > Settings tab. Once i unchecked this, footer stays on
Thank you so much for your help in looking this for me. Much appreciated.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Footer goes on the next pageForum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Footer goes on the next pageUploaded a sample packing slip and a screenshot of the preview at https://file.io/cj6FoiZ2oWGl. If you try to save it to a PDF or print it, the footer always goes on next page but preview looks perfect.
Appreciate your help.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Footer goes on the next pageHi @yordansoares,
Thank you for your prompt reply and suggestion.
I have only one and using the default “Simple” template. The preview looks fine but when i actually try to print the PDF to a printer or save it to a PDF, the footer always goes on to another page.
Any other suggestion? How do i reset all settings to default?
Forum: Plugins
In reply to: [Advanced Woo Search] Display search termThanks, I will give it a go and let you know
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] A-Z List with Description@jmatiasmastro That didn’t really quite answer my question. I am aware of all of the shortcodes available and hence i am trying it with different parameters which wasn’t working. Anyway, thanks for replying.
Hi,
Thanks for the reply.
I am aware of that settings but what i am after is to specify a specific tag as a product have multiple tags associated.
Hi @judyangel,
Were you able to resolve it and would you mind sharing the fix for it as i am facing the same issue?
Thanks in advance.
- This reply was modified 3 years, 2 months ago by nicetig.
Forum: Plugins
In reply to: [WooCommerce] Default shipping method checkedHi Igor,
Thanks, link to the site https://bit.ly/3Cc0qJO and screenshots below.
https://snipboard.io/La1ViE.jpg
https://snipboard.io/sv7cbR.jpg
https://snipboard.io/Uzx1ah.jpgForum: Plugins
In reply to: [WooCommerce] Default shipping method checkedthanks Ahir,
I’ve changed ‘free_shipping’ to ‘flat_rate1’ but still not able to get it to work?
add_action( 'woocommerce_before_checkout_form', 'ahir_select_free_shipping_by_default' ); function ahir_select_free_shipping_by_default() { if ( isset(WC()->session) && ! WC()->session->has_session() ) WC()->session->set_customer_session_cookie( true ); // Check if "free shipping" is already set if ( strpos( WC()->session->get('chosen_shipping_methods')[0], 'flat_rate1' ) !== false ) return; // Loop through shipping methods foreach( WC()->session->get('shipping_for_package_0')['rates'] as $key => $rate ){ if( $rate->method_id === 'flat_rate1' ){ // Set "Free shipping" method WC()->session->set( 'chosen_shipping_methods', array($rate->id) ); return; } } }
`