Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @sarankumar. I ran into this issue as well. I solved it by this code snippet. Can you try it?

    add_filter(
    	'option_wcv_hpos_data_sync_complete',
    	function ( $value ) {
    		$value = 'yes';
    		return $value;
    	}
    );

    Please put it into your functions.php in your theme. Or you can use WP Code or Code Snippets plugin

    • This reply was modified 8 months, 3 weeks ago by irisslee95.
    Thread Starter Sarankumar

    (@sarankumar)

    checked the above code but not working.

    Okay, so let try this one

    add_filter(
    	'option_wcv_hpos_data_sync_complete',
    	function ( $value ) {
    		$value = 'yes';
    		return $value;
    	}
    );
    
    add_filter(
    	'option_wcvendors_display_notice_hpos_sync_in_progress',
    	function ( $value ) {
    		$value = 'yes';
    		return $value;
    	}
    );
    Thread Starter Sarankumar

    (@sarankumar)

    Above code is also not working.

    Plugin Support Jeff Alvarez

    (@superlemon1998)

    Hi @sarankumar

    We noted this bug and are currently working on it. A fix for this will be released in the next update.

    Thanks for your patience and understanding.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove annoying admin notices’ is closed to new replies.