Viewing 3 replies - 1 through 3 (of 3 total)
  • batusy

    (@batusy)

    Hi

    I also happen

    Is there keeping this plugin?

    Any solutions?

    Notice: Undefined index: page in E:\site\wp-content\plugins\members-list\core\sort.php on line 30

    batusy

    (@batusy)

    the message shown in debug mode

    Hi Alfredo,

    The following code changes should fix this:

    Find line 30 in file core/sort.php:

    if( $_REQUEST['page'] !== 'members-list-configure-sort') {

    replace with:

    if( !isset( $_REQUEST['page'] ) || $_REQUEST['page'] !== 'members-list-configure-sort') {

    Find line 30 in file core/search.php:

    if( $_REQUEST['page'] !== 'members-list-configure-search') {

    replace with:

    if( !isset( $_REQUEST['page'] ) || $_REQUEST['page'] !== 'members-list-configure-search') {

    Hope this helps!

    Smile,
    Juliette

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Notice: Undefined index: page in /usr….core/search.php’ is closed to new replies.