Good morning guys,
We use hikashop as the initial user payment component for our site and then port the user's hikashop details (name, birthdate, address, etc) over to Community Builder for them to view, manage and modify later.
One of the data we capture is country via zones (countries) provided in a hikashop table called hikashop_zone:
We have studied the article here:
www.joomlapolis.com/support/tutorials/107-use-cases/18377-configuring-a-country-field-with-cb-query-field-plugin
But this is different as our source is the hikashop data table. How should we configure our community builder field to capture the hikashop data? Upon creation in hikashop we will use the following to move data to community builder comprofiler tablers:
if(!empty($addressData->address_country)){
$fields[]='cb_country';
$values[]=$this->database->Quote($addressData->address_country);
We would like members to be able to update their country data once created in community builder.