kreamweb
7/18/2017 - 8:13 AM

This code hide the messages to all user that can't earn points.

This code hide the messages to all user that can't earn points.

<?php

if( ! function_exists('YITH_WC_Points_Rewards') ){
   add_filter('ywpar_hide_messages', 'ywpar_hide_messages' );
 function ywpar_hide_messages( $result ){

 if ( ! YITH_WC_Points_Rewards()->is_user_enabled( ) ) {
 $result = true;
 }

 return $result;
 }
}