• jdewit

    (@jdewit)


    Hi, I enabled the setting “Do not show waitlist button for this product” for some products but it is still showing. Does this setting not work?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The same thing is happening to me, I came here hoping for a fix!

    Plugin Author xootix

    (@xootix)

    Please add this code to your functions.php and see if it works

    add_filter( 'xoo_wl_form_markup', function( $html, $args ){
    	$product_id = $args['id'];
    	if( get_post_meta( $product_id, '_xoo_waitlist_disable', true ) === "yes" ){
    		$html = '';
    	}
    	return $html;
    
    }, 10, 2 );
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Do not show waitlist button for this product’ is closed to new replies.