irisslee95
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Hello @dubaidogfish! Can you please provide your environment details here
WP Admin -> Woocommerce -> StatusHello @nitinp544 We’re sorry you encountered this error. Please use this code snippet to fix it. We will fix it in the next update.
/** * Add a class to the link * * @param array $allowed_tags the allowed tags. * @return array */ function wcv_allow_class_to_link( $allowed_tags ) { $allowed_tags['a']['class'] = true; return $allowed_tags; } add_filter( 'wcvendors_allowed_html_tags', 'wcv_allow_class_to_link' );
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; } );
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, 4 weeks ago by irisslee95.
Hello @tonigin thanks for letting us know, we’ve confirmed it and will fix it soon
Viewing 5 replies - 1 through 5 (of 5 total)