Hi, 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,
Carole