kasimrixa
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Plugin malfunctionHi Ewout,
Please have a look at the image below:
I have disabled download/print invoices when the order status is “Completed” but still I’m able to do that.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change downloadable pdf titleReally appreciate your effort and your guidance,
I will follow your recommendations.
You won a review ??
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change downloadable pdf titleJust a simple snippet
add_filter( 'wpo_wcpdf_filename', 'wpo_wcpdf_custom_filename', 10, 4 ); function wpo_wcpdf_custom_filename( $filename, $template_type, $order_ids, $context ) { $count = count($order_ids); $name = _n( 'invoice', 'invoices', $count, 'woocommerce-pdf-invoices-packing-slips' ); $filename = $name . 'Invoice Custom Text.pdf'; return $filename; }
version 2.3.3 -> https://ibb.co/7Nzdy14
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change downloadable pdf titleI got the point with the example4.
Even if I put some custom text on the $filename still doesn’t take any effect on the file name
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change downloadable pdf titleHi Ewout,
Unfortunately, I’m trying to just copy-paste the code from your examples on the function.php but the functions don’t find an application. Did I miss something?
It seems that when I download the pdf file the filename remains the same.
Just to let you know, I’m not the beginner WP users.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Sorting Issuesi have made some changes to functions.php only to remove some sorting options.
only this.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Sorting IssuesHi Riaan,
The sorting is working perfectly fine in the other categories.
Only on those 2 that I’m using shortcodes.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change downloadable pdf titleEwout thank you so much ??
I’m referring to the filename.
For example, So far I get: invoice-128.pdf
but I need to have this:
128 – [Buyers Name] (Price) (Date).pdf
128 – [Jonathan] (204.3€) (Aug).pdfSo how can I retrieve the name of the buyer, number of the invoice, and the price as well?
$new_filename = $numberInvoice.’-[‘.$buyer.’](‘.$price.’)(‘.$date.’).pdf’;
return $new_filename;I hope you got the point ??
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Keep custom Invoice.phpFollowing up.
I create the child-theme also I copied all the files
from
wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple/to
wp-content/themes/denso-child/woocommerce/pdf/invoices/Is that enough? Because I deleted the invoice from wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple/invoice.php to check if the wp-content/themes/denso-child/woocommerce/pdf/invoices/invoice.php works but nothing.
Each help is appreciated.
Thank you ??