• Is there a way to exclude certain products from being on the waitlist automatically.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author xootix

    (@xootix)

    Please add this code to your functions.php

    add_filter( 'xoo_wl_form_markup', function( $html, $args ){
     
        $exclude_ids = array( 10,11 );
     
        if( in_array( $args['id'] ,  $exclude_ids ) ) return;
        return $html;
       
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Exclude products’ is closed to new replies.