Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Chetan Chauhan

    (@chetanchauhan)

    Paste this into your theme functions.php file

    <?php
    add_filter( 'rct_review_data_fields', 'your_prefix_remove_price_fields', 100 );
    
    function your_prefix_remove_price_fields( $fields ){
    unset( $fields[ 'min_price' ] );
    unset( $fields[ 'max_price' ] );
    return $fields;
    }
    ?>

    Thread Starter vantom

    (@vantom)

    Perfect!
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to delete min and max price’ is closed to new replies.