Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi,
I assume the full screen search is custom coded in some way, or it may use the output from the theme search.php file.
I think the best solution is to turn the automatic search replacement off, and instead use the ajax search pro shortcode directly in the Woodmart header, instead of the search module for desktop.
I believe their header builder has shortcode support via text/HTML modules and you can still keep their search module on the mobile view, only replacing the desktop search.Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
Is it possible to add a link to the archive page for each post type at the end of its group?
I’m afraid that’s not possible. I recall someone may have asked this very same question, it might be on the future features list, I am not sure. It is possible it may get added later on as a core feature.Can I reduce the number of results displayed for each group?
Yes – under the Search Sources -> Limits panel, you can set the number of results for both taxonomy terms and post types: https://i.imgur.com/uHoyuvq.png
If you want somewhat matching number of results for each post type, you can try this option as well, however it may cause some funky number of results in this case, so make sure to test it.Ernest Marcinko
KeymasterI’m afraid it’s not accidental – mobile devices have a built-in UI, which is not styled via CSS, but depends on the each individual system. Those are unfortunately impossible to override, as far as I know.
December 9, 2024 at 10:00 am in reply to: Using date_format on custom date field returns “now” #52192Ernest Marcinko
KeymasterPerfect! In the meantime I found out why the date format was not working and made an issue on the tracker, it will be fixed in the upcoming release 🙂
If you like the plugin and have not rated already, feel free to leave a rating on the wordpress plugin repository, it’s greatly appreciated and helps us tremendously.
I am closing this ticket now.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi!
Please check this guide for that. The Lite and the Pro version are separate plugins, so you can switch back anytime as well as your site is not bloated unneccessarily.
Ernest Marcinko
KeymasterHi!
Make sure the search override feature is enabled, as well as verify if the redirection is set to the WooCommerce results page.
That should do the trick!
Ernest Marcinko
KeymasterHi,
Yes, of course! Here is a demo with The Events Calendar, and here is an extensive knowledge base on how to set it up exactly like that.
December 6, 2024 at 4:46 pm in reply to: Using date_format on custom date field returns “now” #52181Ernest Marcinko
KeymasterAll right, no problem. In that case let’s solve this via a custom code snippet.
First, make sure to use the field like this (without the date format, so it’s not processed):
{evcal_srow}Then use this custom code snippet:
add_filter('asp_cpt_advanced_field_value', function($value, $field_name){ if ( $field_name != 'evcal_srow' ) { return $value; } return date_i18n( "F j, Y", $value); }, 10,2);This will process the field afterwards, and hopefully should do the trick.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterCustom coding would be very complicated here I think.
Have you tried the solution I suggested: https://i.imgur.com/LllFNKT.png
That should be almost exactly what you want.Ernest Marcinko
KeymasterHi,
Well, that exact layout may not be possible as combining groupings is not possible.
However there is still hope, by utilizing the “Other results” group.
For that I would set it up like this: https://i.imgur.com/LllFNKT.pngDecember 6, 2024 at 10:13 am in reply to: Using date_format on custom date field returns “now” #52171Ernest Marcinko
KeymasterThat is very strange.
Can you add temporary back-end and sFTP access details? I may have to debug this locally. Testing on our servers are okay, so I suspect there is something I’m missing here.
-
AuthorPosts