Forums
Home / Plugin: Notification for Telegram / custom billing field
(@bilinmeyen)
1 year, 9 months ago
Hi,
Is it possible to mention custom billing field in notification?
I have custom field as “billing_branch”.
Could you let me know the way to show this field in notifications?
(@rainafarai)
1 year, 8 months ago
HOOKS IN WOO ORDER NOTIFICATION:
we introduced 3 HOOKS so you can add things in message without changing the plug codeAdd to your function.php this example print ORDER ID before product list
<?php function nftb_order_before_items($order_id){ return "ORDER ID : ".$order_id; #do your things here !! } ?php>