not show users prior to specific date


Home Forums Front End PM PRO not show users prior to specific date

This topic is: Not Resolved
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #45941
    aas.sssss
    Participant

    Hi I need to not show users prior to November 1, 2024 in the list. Is it possible to do this?
    tnx
    e.

    #45943
    Shamim Hasan
    Keymaster

    You can add following code in your theme’s (child theme’s if you are using) functions.php

    add_filter( 'fep_filter_rest_users_args', function( $args ){
        $args['date_query'][] = [
            'after'     => '2024-11-01 00:00:00',
        ];
        return $args;
    });
    
Viewing 2 posts - 1 through 2 (of 2 total)

You need to purchase ‘Front End PM PRO’ to create topic in this support forum.

If you already purchased ‘Front End PM PRO’ please LOGIN.