creoadmin
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Showing Custom NotesAlso…
I want to display my custom field “Student Name” as well. I would like this to display right before “Teacher Name”. How I do I do that?Forum: Plugins
In reply to: [Code Snippets] Text in Code Snippet appears twiceAny update on this topic?
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Filter by SizeTHANK YOU!
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Filter by SizeIf someone is shopping at my site, I would like them to be able to filter all shirts in size large that are available. Right now they have to click on each shirt to see what size is still in stock.
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Filter by SizeThanks! Is there a way to filter all size LARGE tops?
Ha! well, that couldn’t be easier. Thank you!!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Longer Field LengthThanks! See this packing slip. The engraving text is cut off after a certain number of characters:
https://woodzgear.com/wp-content/uploads/2019/08/packing-slip-1056848.pdfForum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon CodeI have no idea what changed but it started working today!! 🙂
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon CodeDefinitely using this plugin and the simple template. 🙁
https://leggingavenue.com/wp-content/uploads/2019/05/Screen-Shot-2019-05-29-at-10.24.51-PM.png
Thanks for your patience! I have NO idea why it isn’t working!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon CodeWe are definitely narrowing the problem! I added a new snippet with that test code and TEST appeared nowhere on the packing slip. But, I have verified that the snippets are activated everywhere.
https://leggingavenue.com/wp-content/uploads/2019/05/Screen-Shot-2019-05-28-at-9.43.55-PM.png
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon Code@kluver I am so confused why they stopped working! I haven’t made any recent changes to my packing slips template. They stopped working when I installed a new theme. That could be the problem?
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon CodeI did verify that they are still executed. They are running in the Code Snippets plugin. 🙂
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon CodeI am so sorry to be reopening this thread, but I can no longer see what coupon codes have been used on my packing slips.
Also, you gave me a custom code to list user roles on my packing slips and that has stopped working too. Here is what you said for that:
add_action( ‘wpo_wcpdf_after_order_data’, ‘wpo_wcpdf_print_user_role’, 10, 2 );
function wpo_wcpdf_print_user_role ($template_type, $order) {
if ($template_type == ‘packing-slip’) {
$user = $order->get_user();
if ( $user && in_array( ‘gold_level_membership’, (array) $user->roles ) ) {
?>
<tr class=”user-role”>
<th>User role:</th>
<td>Gold Level</td>
</tr>
<?php
} else {
?>
<tr class=”user-role”>
<th>User role:</th>
<td>Customer</td>
</tr>
<?php
}
}
}Any ideas as to what happened that caused these to stop working? THANK YOU for all of your help!!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Coupon CodeThis is amazing and works PERFECTLY!!!
One more request, is there a way to include the order notes on the packing slips/invoices?
THANK YOU for your amazing support!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] User RoleWORKS PERFECT! THANK YOU!!!!