Hi
A) When the mouse click on end_file link in the column of name File ... All the link goes JOOMLA/Administrator/index.php?option=com_hikashop&ctrl=view&task=edit&id=0|beez3|component|com_hikashop|checkout|after_end%2Ephp and only the template name in red change beetween item .
What does it mean in joomla word refer to this
doc
? Do we override the hikashop component layout for specific template ?
B ) after click on the first item , I can edit the code .
cms3 API link in code give
<?php
$app = JFactory::
getApplication
();
$app->
redirect
(hikashop_completeLink('order&task=show',false,true));
?>
where is documented the "method ?" hikashop_completeLink ?
i think it is like
angular redirect
but for php
C) the code above can be replace by the new code
$app =& JFactory::getApplication();
$app->enqueueMessage( '<br/>Order id: '.$this->order->order_id.'<br/>Order Number: '.$this->order->order_number );
$order_id = $app->getUserState('com_hikashop.order_id');
$orderClass = hikashop_get('class.order');
$this->order = $orderClass->loadFullOrder($order_id,false,false);
$app->enqueueMessage( '<br/>Order id: '.$this->order->order_id.'<br/>Order Number: '.$this->order->order_number );
what mean hikashop_get('class.order'); ? a alias ? where is the doc about this ?
C) Save this php file ll create a new file ( implicit) for the template
D) and the Joomla back end show that we override the file content
Regard's