Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterIt’s all right, it is easy to get confused 🙂
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 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!
I quickly checked and found the issue. The description field was turned off, I turned it back on here: https://i.imgur.com/nchNWr1.png
It should have disabled the advanced fields with a message so it’s apparent, but for some reason the notification didn’t trigger. It should be okay now.Ernest Marcinko
KeymasterHi,
Sure!
Okay, so in this case the best option is to use a “MORE OR EQUALS THEN” operator, as you want to show venues which have more capacity as the user input: https://i.imgur.com/fyA4MMr.png
So say they input 100 and the capacity of a venue is 180, then it passes as 180 is more or equals than 100.
Ernest Marcinko
KeymasterI will have to take a look at this directly then, custom fields should work just fine.
Can you please add temporary FTP and back-end access so I can check and debug? Thank you!
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
KeymasterSure Collin!
With the isotopic layout the default description is “hidden”, but you can still enable it here: https://i.imgur.com/dPeOQup.png
Ernest Marcinko
KeymasterHi,
Thanks, please allow me a day or two, as I need to setup the routers to allow access to the 3rd party VPN, as we are already behind another secure VPN.
Ernest Marcinko
KeymasterHi,
Are the fields by any chance taxonomies and not post meta?
In that case try:
<p>{__tax_company_catalog}</p> <p>{__tax_company_state}</p>Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterAll right 🙂
Unfortunately currently there is no option to collapse the filters. If you are using checkboxes, you can however “collapse” them by parents: https://i.imgur.com/L3bfLs2.png
Ernest Marcinko
KeymasterIn that case make sure that search bar is also configured to redirect to a custom url the same way as the one on the searchrecipes page:
searchrecipes/?asp_s={phrase}Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
1. Just checked and it looks okay on every browsers, I see 3 rows as expected. Make sure to reload the browsers at the given size (not resize from original).
2. I suggest custom CSS for that:
@media only screen and (max-width: 640px) { .asp_r a.asp_res_url { font-size: 18px; } }3. You mean that if there are multiple lines with the title? You could basically force the title to a single line:
.asp_r a.asp_res_url { white-space:nowrap; text-overflow: ellipsis !important; overflow: hidden; } .asp_r h3 { width: 100%; }Ernest Marcinko
KeymasterThanks, I was able to reset a login that way.
So, the issue is the Divi critical CSS feature, it overrides most of the plugin CSS. I was able to add a code snippet to “fix” that:
add_filter('asp/assets/css/prefix', function($prefix, $id){ return $id == 8 ? '#et-boc ' : ''; }, 10, 2);You can find it in the code snippets plugin. This however means, that the search ID=8 will only be rendered correctly on that page.
-
AuthorPosts