-- HikaShop version -- : 2.4.0
-- HikaMarket version -- : 1.6.2
-- Joomla version -- : 3.4.1
-- PHP version -- : 5.3.29
Hello,
on the vendor listing page, I need to show also Vendor's "country" and "state" fields (not only image and name).
I've added following code to listingcontent_img_title.php :
echo $this->fieldsClass->show($this->extraFields['vendor']['vendor_address_country'],$this->row->vendor_address_country);
echo ' / ';
echo $this->fieldsClass->show($this->extraFields['vendor']['vendor_address_state'],$this->row->vendor_address_state);
As you can see also in the screenshot, for "country" (Bratislava, Nitra, Zilina...) it works OK.
But for "state", which is the subzone of "country", it works only for the first of the "countries" (Bratislava) and for the others there is just the internal identificator of the value shown.
Any idea what could be wrong here and how to fix it?
Thanks much.