Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi,
Please note that I can’t guarantee anything for customizations.
Apple mobile devices – especially when using the Safari browser are notoriously badly designed, most webkit features are buggy, many CSS rules are simply ignored. This is the case here, where you have this custom rule:
input.asp_radio { -webkit-appearance: none !important; appearance: none !important; background-color: #fff; margin: 0 !important; }The Iphone Safari simply ignores the “appearance: none” and still displays the radios. The only way to get around it is adding a display rule as well:
input.asp_radio { -webkit-appearance: none !important; appearance: none !important; background-color: #fff; margin: 0 !important; display: none !important; }This should solve it.
Ernest Marcinko
KeymasterGreat 🙂
At least it’s resolved now. You are very likely correct, WordPress tries to change the cache folder permissions initially, but if the PHP user does not share ownership, it’s not able to. It will be fine now.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterCan you please check if the
wp-content/cachefolder and ALL of it’s subderectories are writeable? Make sure the permissions are set to 0755 or 0777 on that folder and all of the subfolders.
This is the only other thing I can think of, that would explain the issue.Ernest Marcinko
KeymasterThank you so much!
Ernest Marcinko
KeymasterGreat 🙂
If you don’t mind, I will close this topic soon and mark it as resolved, feel free to open another one if you have other questions or issues.
If you like the plugin and have not rated already, feel free to leave a rating on your codecanyon downloads page and on the wordpress plugin repository, it’s greatly appreciated.
Ernest Marcinko
KeymasterYou cannot access this content.
April 19, 2024 at 8:42 am in reply to: how to have search field + taxonomy dropdown on one horizontal line? #47873Ernest Marcinko
KeymasterHi,
You have multiple options, but in all cases you will need to use the settings shortcode. I recommend checking this tutorial for all the details.
In short, if you are using a page builder, then make two columns and put the search shortcode
[wd_asp id=1]to the left and the settings shortcode[wd_asp_settings id=1 element='div']to the right column.You can also use the shortcode generator, but if I recommend using the theme/page builder with the separate shortcodes instead as with that you get more flexibility.
Ernest Marcinko
KeymasterYes, it has the updated version. It might only be the cache, I noticed you have it activated, you can clear it manually here: https://i.imgur.com/YYl2ksR.png
It looks correct to me at the moment, I only get one product for hydrate so the cache is probably cleared by now.It should clear automatically every time a post is updated, but it’s possible that some conditions may prevent that or the browser holds on to the cached content for a while. Either way, clearing manually should force a new query string and update the browser cache forcefully as well.
April 18, 2024 at 6:54 pm in reply to: Reset button to reset the search after visiting a URL with params #47860Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
Thank you so much for the details, it helped a lot.
1. You have stumbled upon an interesting bug here. It was not even the inner/outer part of the word, but a word partial after it was cleared from special characters and delimiters – so a very special case. It didn’t show up on my tests because I was trying simply words one after another, not using any special delimiters.
Either way, I have quickly fixed this, luckily it was super simple and installed the next version beta release – where I also implemented this fix.
If all goes well, now even partials should be definitively excluded.2. The configurations looks perfect to me.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou are very welcome 🙂
If you don’t mind, I will close this topic soon and mark it as resolved, feel free to open another one if you have other questions or issues.
If you like the plugin and have not rated already, feel free to leave a rating on your codecanyon downloads page and on the wordpress plugin repository, it’s greatly appreciated.
Ernest Marcinko
KeymasterThank you!
It was a known issue with the version you had. I have updated to the latest beta release, now it should be all right 🙂
-
AuthorPosts