Show discount table only on product page
Show the discount table only on the product page.
add_filter('advanced_woo_discount_rules_hide_specific_rules_in_bulk_table', function($status, $rule_id, $rule, $product){
if(!is_product()){
$status = true;
}
return $status;
}, 10, 4);