Forums › Forums › Search & Filter Pro › Too many problems in general
- This topic has 1 reply, 2 voices, and was last updated 10 years, 7 months ago by
Ross.
-
Anonymous(Private) December 19, 2015 at 3:20 pm #32552
Hello,
I have many problems with this plugin:
1. In the demo you can choose more that one filter option, i can´t.
2. In the demo the filters are always visible, but when i choose an option the filters disappear.
3. I can´t see the cheekboxes, the radios o the arrows in the dropdown.
4. The search button don´t appear.You can see all these problems here: http://www.en-blanco.es/index.php/properties/
Ross Moderator(Private) December 21, 2015 at 12:22 pm #32627Hi Celia
Ok so there are two main issues.
1) Display problems with the search form controls.
Your theme actually has some CSS that hides the checkboxes/radios and also hides any submit button in the sidebar.
This means any plugin that adds a submit button or a radio button into your sidebar will not work without modification.
I’ve identified the code for the form controls which is causing you issues (in base.css):
a, input, select, textarea { vertical-align: top; outline: none !important; -webkit-appearance: none; -webkit-border-radius: 0; }Its the
-webkit-appearance: none;that needs to be disabled, or overwritten – your theme should not be applying this kind of rule globally to your website.You also have
.sidepanel input[type=submit] { display: none; }Which means any submit button in the sidebar is hidden. 0
2) When you submit the search form you get taken to another page without the search form on it.
Well, you need to actually add the search form to the search results page. It looks like you are using archive display method – http://www.designsandcode.com/documentation/search-filter-pro/search-results/as-an-archive/
You must edit the template you have specified and add the search form somewhere to this page using the shortcode, or you should add a sidebar to the page and use the widget:
http://www.designsandcode.com/documentation/search-filter-pro/getting-started/display-search-form/
Thanks
-
AuthorPosts