Viewing 1 replies (of 1 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    The reason for this likely is the input sanitization that the Extension performs. In the file tablepress-shortcode-filter-get-parameter.php, line 17

    $filter_term = preg_replace( '#[^a-z0-9]#i', '', $filter_term );

    will strip everything from the search term that is not a letter or number, including spaces. Thus, it might be enough to change that line to

    $filter_term = preg_replace( '#[^a-z0-9 ]#i', '', $filter_term );

    (note the added space in the code).

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Space in filter term for GET FILTER Paramater’ is closed to new replies.