carolemarshall
Forum Replies Created
-
That fixed it! Thank you. 🙂
Looking forward to this feature! Thank you.
Forum: Plugins
In reply to: [Jigoshop] SKUs in HTML emailsThank you!
Forum: Plugins
In reply to: [Jigoshop] SKUs in HTML emailsI have commented out the following:
<!-- <?php if ($show_sku): ?> <?php printf(_x(' (#%s)', 'emails', 'jigoshop'), $product->sku); ?> <?php endif; ?> -->And it seems to be working. Will this break anything else?
Forum: Plugins
In reply to: [Jigoshop] SKUs in HTML emailsHi Krzysztof,
Thank you for the help. 🙂
Option 2 does not work; skus still appear in [order_items_table]. Can you please tell me what change to make to emails/items.php ?
~ Carole
Forum: Plugins
In reply to: [Jigoshop] SKUs in HTML emailsHi, anyone have any suggestions on this? It seems like a small thing but it’s aggravating to my client.
I have SKUs turned off and have regenerated the HTML emails. I have also made the following change to jigoshop_emails.php:
ORIGINAL function jigoshop_get_order_items_table($order, $show_links = false, $show_sku = false, $includes_tax = false) { if (\Jigoshop_Base::get_options()->get('jigoshop_enable_html_emails', 'no') == 'no') { return $order->email_order_items_list($show_links, $show_sku, $includes_tax); } NEW function jigoshop_get_order_items_table($order, $show_links = false, $show_sku = false, $includes_tax = false) { if (\Jigoshop_Base::get_options()->get('jigoshop_enable_html_emails', 'no') == 'no') { return $order->email_order_items_list($show_links, $includes_tax); }….and I still get SKUs appearing in my html emails.
Please help.
Thank you,
CaroleForum: Plugins
In reply to: [Jigoshop] SKUs in HTML emailsHi Krzysztof,
Yes I am.
Thanks,
CaroleForum: Plugins
In reply to: [Jigoshop] Shortcodes not working in HTML emailsHi, sorry for the slow reply!
[order_items_table] – this works perfectly now, as far as I can tell.
[order_taxes] still shows zero amounts, but the taxes are broken out correctly in the table, so I’m happy. 🙂
Thanks for an excellent plugin.
~ Carole
Forum: Plugins
In reply to: [Jigoshop] Shortcodes not working in HTML emailsThank you!
Forum: Plugins
In reply to: [Jigoshop] Shortcodes not working in HTML emailsCan anyone suggest anything here? Please?