yamo
Forum Replies Created
-
Hello thescarletfire,
I am having the same issue, did you find a way to reset the invoice numbering ?
Thanks
- This reply was modified 7 years, 2 months ago by yamo.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Add product short descriptionwoocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] Plugin dosen’t worksame issue here
nevermind, the other plugin developer hardcoded the email content 🙁
Forum: Plugins
In reply to: [Invoices for WooCommerce] Add product short descriptionI did it by modifying abstract-invoice.php in function add_description_column_data:
line 427:
$product = wc_get_product( $item[‘product_id’] );
$product_description = $product->get_description();
echo “<br>”;
echo esc_html( $product_description );That’s actually for the description and not the short description (excerpt)
- This reply was modified 7 years, 6 months ago by yamo.
Forum: Plugins
In reply to: [Invoices for WooCommerce] meta dataHi slalici,
I had the same issue. I used the plugin « Checkout Field Editor for WooCommerce » to create some custom field and could not get them to be displayed in the invoice.
The meta key displayed in the admin was not the same as the one actually save in database…
Check your database to be sure of the key. Mine was “_billing_billing_siret” instead of just “billing_siret” like I thought it was.Hope this helps
- This reply was modified 7 years, 6 months ago by yamo.