Forums › Forums › Search & Filter Pro › Drop-down menu not working in Safari
- This topic has 30 replies, 2 voices, and was last updated 5 years, 1 month ago by Trevor.
-
Anonymous(Private) September 29, 2019 at 10:14 am #222292
That is a shame, we are back to the original problem then 🙁
While with your CSS help using Select boxes do appear nicer, it is still not as aesthetically pleasing as the original version, and as this is the primary page for the website, looking simple and sleek is key.
Is there an alternative option to not use these select boxes but the search still functioning on Safari? Or worse case, can I make the display conditional so that only Safari users will see the Select boxes?
Thanks!
Trevor(Private) September 30, 2019 at 5:21 pm #222394From within our plugin, some tweaks can be made to the Select2 CSS, but functionally it is as it is.
As we are here applying a script not normally applied in this way, you could look for alternative jQuery select scripts, but my experience is that many are very old and abandoned, as Select2 has become the defacto standard for WordPress.
I am not sure it is Safari that is the issue, but iOS, combined with something else in your theme. Out of the box, our standard usage of selects works fine with Apple devices and Safari, but the styling is determined by the user settings on the local device and in iOS and Safari, over which you have no control.
There is not a way to target to exclude Safari.
Is it that the look (style/CSS) needs more adjustment?
Anonymous(Private) October 2, 2019 at 4:57 pm #222752Thank you Trevor, I really appreciate the time you have taken to help resolve this! I’m assuming it is Divi (and the additional code that was needed) that made Safari on HighSierra bonk (Safari on non-laptops appear to work). FYI – Looking at the error produced it appears to be related to failed due to access control checks (not allowed by Access-Control-Allow-Origin).
I’ll go ahead to switch to the Select2 version, but is there any way to set the limit for when a drop-down menu should start to display a scroll or not? That is, I would like all dropdowns to appear the same, and Categories (with its 7 options) not to display a scroll. Possible with CSS tweaks, or coding job?
Trevor(Private) October 4, 2019 at 1:09 pm #222875Can you see if this modified code works?
<script> (function ( $ ) { $(document).on("sf:ajaxfinish", ".searchandfilter", function(){ $('select.sf-input-select').select2({minimumResultsForSearch: -1}); $('select.sf-input-select').attr("size",$("'select.sf-input-select' option").length); }); }(jQuery)); jQuery(document).ready(function($){ $('select.sf-input-select').select2({minimumResultsForSearch: -1}); $('select.sf-input-select').attr("size",$("'select.sf-input-select' option").length); }); </script>
Anonymous(Private) October 5, 2019 at 9:43 am #222959I don’t know if to laugh or cry, but the original dropdowns now work on Safari/iOS. There have not been any updates made on the code/page, theme/plugins or browser, so assuming it is something to do with the Access control issue that no longer appeared (possibly fixed by WP or host).
Thank you again and now I have an alternative if the issue reappears! -
AuthorPosts