-- HikaShop version -- : 3.2.0
-- Joomla version -- : 3.8.5
-- PHP version -- : 7.1.1
Hi , how can insert email adress of customer in address_template.php ?
<?php
/**
* @package HikaShop for Joomla!
* @version 3.2.0
* @author hikashop.com
* @copyright (C) 2010-2017 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>{address_company}
{address_title} {address_firstname} {address_lastname}
{address_street}
{address_post_code} {address_city} {address_state}
{address_country}
<?php echo JText::sprintf('TELEPHONE_IN_ADDRESS','{address_telephone}');?>
<?php
$user = JFactory::getUser();
echo echo $user->email; ?>
i tried to insert :
<?php
$user = JFactory::getUser();
echo echo $user->email; ?>
but in administration when i send order, the system use my administration email.
it's there a way to insert the real email of customer ?