Looking for help?
< All Topics
Print

How to disable online order notice ?

Add this short to to your_active_theme/functions.php or any snippet code plugin support

function custom_op_hide_notice_orders_result($posts){
    return array();
}
add_filter('op_notice_orders_result','custom_op_hide_notice_orders_result',11,1);
Table of Contents