Views plugin lets you build your own custom search for any content type. These searches can be based on post content, taxonomies and custom fields.
When you ask for help or report issues, make sure to tell us settings for your custom search.
Viewing 15 topics - 421 through 435 (of 751 total)
Problem: After migrating an existing site to a new server, I have noticed that some markers that were displayed on my maps on the old site do not appear on my maps on the new site. In the server logs, I can see repeated messages about missing functions ST_X and ST_PointFromText:
...FUNCTION **.ST_X does not exist
...FUNCTION **.ST_PointFromText does not exist
Solution: Toolset's mapping features make use of functions provided in MySQL 5.6+. If your site runs a version of MySQL lower than 5.6, several maps features may not work as expected and you may find errors in the PHP logs. Check the server's current MySQL version and update if necessary. Ask your hosting provider for assistance with that upgrade, if needed.
Problem:
The user would like to filter orders by the day. Display the orders for a selected day.
Solution:
Toolset stores the dates and times as a number, it is the timestamp of the date or time. It is the date/time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT).
The view's datepicker will provide the day, at 00:00:00, configure the filter to look for a value that is greater than the provided filter value(from URL param). We'll still need to look if the posts are lower than the next day(22/12/2022 00:00:00).
Unfortunately, this will need some custom code to calculate it. Please check this similar thread https://toolset.com/forums/topic/between-dates/#post-1537199