Problem:
Extracting Latitude and Longitude to a custom field when add/edit post in admin
Solution:
To extract the lat,long from custom address field and copy it to different custom field when you add/edit post from backend admin, you will require to use standard WordPress hook save_post.
A user asked about the best approach for sharing date information without a specific day.
Solution:
Guided that it is possible to show the date type field's output in any date/time format, using the "format" attribute.
However, storing the month and year without the actual day is challenging as the Toolset's date type field stores the selected date in a UNIX timestamp format ( ref: https://en.wikipedia.org/wiki/Unix_time ).
This format stores the exact date and time reference, in which the day component can't be skipped.
For this reason, if you just need to store and display month and year with the posts and don't plan to perform any date based search/filtering on these, it would be better to replace a single date type custom field, with two select type custom fields, one for the month and the other for the year.
A user reported that he is noticing some changes in the HTML output of the accordion cell included with the Toolset Layouts plugin.
Solution:
Guided that the change in the mark-up of the accordion cell seems to be related to the Bootstrap version.
The old markup from the "before" screenshot is used when "Bootstrap 3" is in use, while the new markup from the "after" screenshot is generated when "Bootstrap 4" is in use.