📺 Watch the video tutorial to learn how to set up
Navigation:
Go to Notiqoo → Settings → Templates
- Enable WhatsApp Order Status Notifications
Activate order status messages by selecting a template from the dropdown. You can customize template parameters for the header and body individually. Different templates can be set for customers and admins, or the same one for both.
- Enable/disable notifications for each recipient type.
- To skip sending messages to admins, simply disable admin notifications.
- New templates added in your Meta Business → WhatsApp Templates section won’t appear until you hit the “Sync now” button.
- You can preview how the message will look in the template preview section.
2. Add Custom Parameters Using Filter Hook
You can define custom parameters for templates by using a filter. Add the following code in your theme’s functions.php
file:
add_filter('woom_additional_template_params', 'function_name', 10, 2); function function_name($parameters, $order) { $custom_params = array( "param1" => '', "param2" => '' ); if ($order !== null) { $custom_params = array( "param1" => 'value1', "param2" => 'value2' ); } $parameters = array_merge($parameters, $custom_params); return $parameters; }
- This hook allows you to dynamically pass extra data into your templates.
- Once added, the parameters will be accessible within the Notiqoo template editor.
- Hover over the question mark icon beside any parameter to see the defined values.
- Read this detailed blog post to learn how to add custom parameters in Notiqoo templates
3. WooCommerce Bookings
If you’re using WooCommerce Bookings, make sure to enable Booking Notifications to keep customers informed of their booking status via WhatsApp
4. Add Custom Buttons
You can add more buttons (e.g., call to action or quick reply buttons) in your templates. Just add them in the button section and save your changes.