Bas Elbers
Forum Replies Created
-
Forum: Plugins
In reply to: [Invoices for WooCommerce] Footer translationThe free version does not support WPML, but the premium version does.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Attach SignatureYou will need to create a custom template for it. Add an image to the media library and add it using the
<img>
tag.Forum: Plugins
In reply to: [Invoices for WooCommerce] Add Bank Account DetailsYou will need to create a custom template for it which requires coding experience.
https://stackoverflow.com/questions/53656516/how-to-get-and-display-bacs-account-details-in-woocommerceI will be happy to add it to the premium plugin for you. Feel free to shoot me an email.
Forum: Plugins
In reply to: [Invoices for WooCommerce] how to remove messages in dash boardWe are not affilitated with WooCommerce PDF Invoices & Packing Slips in any way. Please contact the author of the specific plugin for it.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Invoice without price?I suggest to use the packing slips and maybe even add the packing slips to the New Order email and add extra recipients to the New Order email within WooCommerce.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Adding custom field information to the pdf invoiceOur plugin does not automatically show all custom fields. It depends on the type. Our premium plugin does have the ability to show them.
Can you let me know which custom fields you would like to show?
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to change the text of the template?I can advise you to use a translation plugin like Loco Translate or an application like PoEdit to translate the text.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Currency symbol not showingThe question is lacking information thus we will mark this as resolved. Please read the first topic and let me know if I need to reopen this topic.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Plugin not compatible with PHP > 7.1The latest version of our plugin is compatible with PHP 7.4.
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to Remove Quantity columnYou could have a look at the below topic on how to change the columns.
https://www.ads-software.com/support/topic/include-text-for-row/#post-13023358Forum: Plugins
In reply to: [Invoices for WooCommerce] Include text for rowI’ve created below examples to add columns to the invoice by using filters. Not tested, but should work totally fine.
function add_sku_column( $columns, $invoice ) { $columns = array_merge( array( 'sku' => __( 'SKU', 'woocommerce-pdf-invoices' ) ), $columns ); return $columns; } add_filter( 'wpi_get_invoice_columns', 'add_sku_column', 10, 2 ); function add_sku_column_data( $row, $item_id, $item, $invoice ) { /** @var WC_Product $product */ $product = $item->get_product(); $row = array_merge( array( 'sku' => $product ? $product->get_sku() : '-' ), $row ); return $row; } add_filter( 'wpi_get_invoice_columns_data_row', 'add_sku_column_data', 10, 4 ); function add_unit_of_measure_column( $columns, $invoice ) { // Splice columns at 'quantity' column, add column and merge with last part. $offset = array_search( 'quantity', array_keys( $columns ), true ); $columns = array_merge( array_splice( $columns, 0, $offset ), array( 'unit_of_measure' => __( 'Unitate de masura', 'woocommerce-pdf-invoices' ), ), $columns ); return $columns; } add_filter( 'wpi_get_invoice_columns', 'add_unit_of_measure_column', 20, 2 ); function add_unit_of_measure_column_data( $row, $item_id, $item, $invoice ) { /** @var WC_Product $product */ $product = $item->get_product(); $attribute_value = $product ? $product->get_attribute( 'Unitate de masura' ) : ''; $offset = array_search( 'quantity', array_keys( $row ), true ); $row = array_merge( array_splice( $row, 0, $offset ), array( 'unit_of_measure' => $attribute_value, ), $row ); return $row; } add_filter( 'wpi_get_invoice_columns_data_row', 'add_unit_of_measure_column_data', 20, 4 );
Forum: Plugins
In reply to: [Invoices for WooCommerce] Advanced Shipment Tracking Plugin CompatibilityI have added a filter to the latest update. Let me know if this is what you are looking for.
To regenerate the pdf invoices, make sure to delete them first. If they are already sent to the customer, please check the FAQ.
Hope this helps!
Can you send a screenshot? I am not sure I understand what you are trying to say. It is recommended to update your custom template with the latest template from the plugin.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Test ordersYou can use the reset counter to reset the sequential number and regenerate the invoices. Let me know if this is what you are looking for.