A user reported that the 'placeholder' attribute for the 'cred_field' shortcode, doesn't seem to work for the address type fields.
Solution:
Guided that I've passed this on to the concerned team and for now a workaround can be to use the 'gettext' filter to change that default placeholder text.
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.