So here is an update:
The datefield is being updated on each page view? This is not just the date view, but the date in the field in the table. Could this be the result of using a query, although ajax updating the field is supposed to only happen at registration and profile edit I had read.
Here is the code and settings I am using at each stage:
- The select query for the city:
cb_city_one
SELECT `province`, `city_name`, `city_id` FROM `#__townlocations_canada` ORDER BY province, city_name
integrations: none
- The datetime field:
cb_choice_one
format: Default settings
integrations: none
- The query date field:
cb_pick_one
UPDATE `#__comprofiler` SET `cb_choice_one` = NOW() WHERE `#__comprofiler`.`user_id` = [user_id]
integrations: Update On: cb_city_one
Suggestions/corrections are appreciated.