Title: Exclude certain products?
Last modified: September 29, 2017

---

# Exclude certain products?

 *  Resolved [imkane](https://wordpress.org/support/users/imkane/)
 * (@imkane)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-products/)
 * Is there any way to exclude certain products from receiving the reminders?

Viewing 1 replies (of 1 total)

 *  Plugin Author [Josh Kohlbach](https://wordpress.org/support/users/jkohlbach/)
 * (@jkohlbach)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-products/#post-9547083)
 * Hi [@imkane](https://wordpress.org/support/users/imkane/),
 * At the moment, its something you’ll need some PHP coding knowledge to achieve.
 * The best way to do this is to filter the products table that is generated for
   the email and exclude the ones you don’t want.
 * err_reminders_info_product_list is the name of the filter and you can find this
   in includes/class-err-emails.php
 * You would add it to your functions.php file like:
 *     ```
       add_filter( 'err_reminders_info_product_list', 'custom_err_reminders_product_filter', 10, 5 );
   
       function custom_err_reminders_product_filter( $rows, $reminderID, $userID, $orderID, $order ) {
           // Your code for filtering $rows to remove the products you don't want goes here
           // $rows is the table HTML, so a regex search would be best.
           return $rows;
       }
       ```
   
 * Hope this helps!

Viewing 1 replies (of 1 total)

The topic ‘Exclude certain products?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/easy-review-reminders_279fcc.svg)
 * [Easy Review Reminders](https://wordpress.org/plugins/easy-review-reminders/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-review-reminders/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-review-reminders/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-review-reminders/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-review-reminders/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-review-reminders/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Josh Kohlbach](https://wordpress.org/support/users/jkohlbach/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-products/#post-9547083)
 * Status: resolved