Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Search settings shortcode prints duplicated filters › Reply To: Search settings shortcode prints duplicated filters
December 13, 2019 at 10:51 am
#25018
Keymaster
Hi,
I see what the duplication is caused now. There is a carbon copy of the search for the mobile menu or the mobile version of the site. Because there are two copies of the same search, there will be two copies of the settings as well.
The simplest bypass I can think of, is by hiding the second copy of settings programatically:
.asp_sb_1_2,
.asp_s_1_2 {
display: none !important;
}
That will get by that issue.