Hi, I'm trying to add a link a Hikamarket profile to Easysocial. This code displays the correct information. I could not find instructions. It is possible to display an avatar and an popup profile card?
<?php
include_once(JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/easysocial.php');
$user = JFactory::getUser();
$db = JFactory::getDbo();
$vendorClass = hikamarket::get('class.vendor');
$vendor = $vendorClass->get($variant->product_vendor_id,'vendor');
$userid = $vendor->vendor_admin_id;
$query = "SELECT `user_cms_id` FROM `#__hikashop_user` WHERE `user_id` = '" . $userid . "'";
$db->setQuery($query);
$hika_user_id = $db->loadResult();
$user_es = ES::user($hika_user_id);
var_dump($user_es->name);
?>