fahadmahmood8 / stock-locations-for-woocommerce

This plugin will help you manage WooCommerce Products stocks through locations and also different traditional barcodes.
https://pt.wordpress.org/plugins/stock-locations-for-woocommerce/
GNU General Public License v3.0
22 stars 14 forks source link

Allow to modify stock allocation email subject #151

Closed chingologram closed 9 months ago

chingologram commented 9 months ago

The subject for the notification email is hardcoded in src/helpers/helper-slw-mail.php, line 41: $subject = __('Stock allocated in', 'stock-locations-for-woocommerce') . ' ' . $term->name;

Could we add a filter as follows in line 42 ?

apply_filters('slw_stock_allocation_notification_subject', $subject, $term, $quantity, $item);

The reason for this is that we want to group notifications for the same order under the same email thread for readability purposes.

Cheers!

fahadmahmood8 commented 9 months ago

I have added this filter line in the plugin, you will get it in the next version, thank you.