php - Removing Purchase Note from admin email woocommerce -


i have direct modified abstract-wc-order.php in includes folder (of child theme) remove purchase_notefrom 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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -