php - Removing Purchase Note from admin email woocommerce -
i have direct modified abstract-wc-order.php
in includes
folder (of child theme) remove purchase_note
from admin emails.
'items' => $this->get_items(), 'show_download_links' => $this->is_download_permitted() && ! $args['sent_to_admin'], 'show_sku' => $args['show_sku'], 'show_purchase_note' => $this->is_paid() && ! $args['sent_to_admin'], 'show_image' => $args['show_image'], 'image_size' => $args['image_size'], 'sent_to_admin' => $args['sent_to_admin']
but isn't working. there way override file theme folder? suggestions?
partial answer @ least purchase note:
here's how can remove purchase note
admin new order email.
https://github.com/woothemes/woocommerce/commit/657521ffa445cd25d0ae0d7759f7ae4c92b7a87c
according developer, version 2.5.2 added master files.
Comments
Post a Comment