hypostatic
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Bigger markOk, thanks, now it’s better. I also use snippet to get notes to invoice and packing slip. I need to get “Serial number” not “Notes”. With code I get it right to packing slip, be cause code change “Note” to “Serial number”. But I like to have “notes” changed to invoice too, so code must be in original code then? It would be much better to have snippet for this, so updates don’t change it and I can use snippet in other WP installations too. So invoice notes name should be “Serial number”.
/** * WooCommerce PDF Invoices & Packing Slips: * Show the invoice notes on packing slips too */ add_action( 'wpo_wcpdf_before_customer_notes', function( $document_type, $order ) { if ( $document_type == 'packing-slip' ) { $document = wcpdf_get_document( 'invoice', $order ); if ( $document && $document->exists() ) { ?> <div class="notes"> <h3>Serial number:</h3> <?php echo $document->document_notes(); ?> </div> <?php } } }, 10, 2 );
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Bigger markWell, I can’t paste code here.. it looks broken.
add_action( 'admin_head', function() { ?> <style> .wc_actions a.wpo_wcpdf::after { font-size: 30px !important; left: -3px !important; top: -13px !important; } </style> <?php } );
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Show printed pdfs more clearlyThanks. Now it’s different color. Still same tiny check mark.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Show printed pdfs more clearlyThere is green check mark already. It’s too tiny.
Forum: Plugins
In reply to: [WPC Product Timer for WooCommerce] Coming to store dateForum: Plugins
In reply to: [WPC Product Timer for WooCommerce] Coming to store dateYes, but how I do that?
Forum: Plugins
In reply to: [WPC Product Timer for WooCommerce] Coming to store dateThanks, but I can’t make it right.. even I read documentation. I think I need only 1 action so it have to be possible. Now when some product indicate that it’s out of stock, I only want to show customers when product is in stock again. And when product is in stock you just edit stock quantities and “Coming to stock” date disappear of course.
So I tried several action and didn’t work. For example “Set in stock->After date->xx/xx/xxxx”.
Forum: Plugins
In reply to: [Redux Framework] Theme brokeOk. I have fourth option. I wait a few more updates.
Forum: Plugins
In reply to: [Redux Framework] Fatal Error, please help.Thanks, but I don’t have time for this. Thanks to you Redux.
Forum: Plugins
In reply to: [Redux Framework] Fatal Error, please help.Eletro theme is broken and eshop have to be online.
Forum: Plugins
In reply to: [Redux Framework] Fatal Error, please help.Not my problem.. how I can go back?
Forum: Plugins
In reply to: [Redux Framework] Fatal Error, please help.Update broke site… how we can go really fast in previous version?
I need a new order status when printing packing slip (Ready to shipment). I tried code above but it doesn’t work. I’m using WooCommerce PDF Invoices & Packing Slips. Can you help me?
Forum: Plugins
In reply to: [WooCommerce] Admin ‘Add Order’ shipping methodsHi,
I would love to see that the delivery methods for administrator orders are editable. Or automatically connected to our shipping methods. Is there hope for it one day?