• Resolved kshackelfordcaa

    (@kshackelfordcaa)


    Is there a way to disable certain child products from being reviewed on a bundle?

    example review everything but 588546 & 195293.

    Seems people are reviewing items that are hidden from the public, with unchecked review, instead of reviewing the parent product.

    Looking at past post similar this snippet should work, but its not (which just suppose to show parent items only).
    ——-

    add_filter( 'cr_skip_reminder_generic', 'cr_skip_reminder_generic_function', 10, 2 );
    function cr_skip_reminder_generic_function( $skip, $order_id ) {
    	$parent_order_id =  wp_get_post_parent_id( $order_id );
    	if ( 0 != $parent_order_id ) {
    		$skip = true;
    	}
    	return $skip;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Thank you for using CusRev.

    Using the filter cr_skip_reminder_generic is to skip scheduling the review reminder for an order, not for a/some products.

    If you want to exclude some products from the review reminder, please assign them to a specific category. Then go to Reviews > Settings > Review Reminder tab:
    – Enable for: Specific categories
    – Categories: select all categories except the specific category above to exclude products.

    We haven’t heard from you for more than two weeks. For this reason, I’ll assume that either you are not interested in this question/problem anymore or it has been resolved. If you still require any help, please start a new forum topic.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable Certain Products in child bundles from being reviewed’ is closed to new replies.