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

Guidance on search actions

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Guidance on search actions

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #53552

    Hi all

    I’ve been tinkering with the plugin for a week and need help on implementing some basic features.

    1) I need the search bar to be fully extended on page load. It is constantly coming up as the magnifier I need to click in order for it to open.

    2) I’d like my chosen categories to appear to be used for filtering

    3) I’d like to hit Enter and to be taken to my results page. **I do not want the results appear as a dropdown under the search box**

    4) for the filter box to not appear on the search results page. I can make tweeks in php and css files if pointed to them.

    You can search on “xml” or “polymer” to see the results actions at the moment.

    Thanks guys.

    #53560
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    1. Make sure that the compact box layout is disabled, you may have enabled it by accident. That will do the trick.

    2. Set the following settings: https://i.imgur.com/6zMZx7w.png

    3. Sure! Make sure the magnifier and return actions are set to the default “Redirect to the results page” option.

    4. You can solve this two ways
    – one is to create another search bar and use that on the results page, then you don’t need any custom code.
    – The other one is to use this custom CSS on the results page to hide the search settings area.
    I don’t recommend making direct changes to the plugin files, as plugin updates will automatically overwrite them. Usually the search results page has the “search” class appended on the body element, so this custom CSS should isolate it:

    body.search .asp_ss {
        display: none !important;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.