This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Search phrase validation

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #12421
    fespigadofespigado
    Participant

    Hi Ernest,

    I need to remove some characters written by the users before the search.
    and change in the search box.

    Ex: 1234 567 to 1234567 or 1234.567 to 1234567

    I can use
    Add_action (‘asp_before_search’, ‘asp_change_phrase’, 10, 1);
    str_replace…
    OR
    Add_filter (‘asp_after_search’, 10, 1);?
    str_replace…

    Thanks

    #12432
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I think this is what you are looking for: https://wp-dreams.com/knowledge-base/replace-or-remove-characters-from-search-phrase/

    That code should be the base, but change the two variables to:

    [php]$characters = " .";
    $replace_with = ""; [/php]

    So space and dot is replaced with empty string.

    #12445
    fespigadofespigado
    Participant

    Everytihng work good Ernest!

    One more thing,
    It’s possible to put beside the related image of each category?

    Thank you a lot.
    You have created an excellent plugin.

    #12451
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You are very welcome, and thank you for your kind words!

    Unfortunately that is not possible, I’m sorry.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.