HI,
OK, I think I understand what you're trying to do.
You want the shipping methods selection area of the checkout to be displayed on its own on another page so that you don't have to enter the shipping information both in HikaShop and in a Joomla article but only in HikaShop.
That won't be possible to do it like that unless there is some code development.
What I would recommend is to change your Joomla article to include in it some PHP to retreive the shipping methods available and display them.
The PHP is not that long. It should be something like that:
<ul>
<?php
if(!defined('DS'))
define('DS', DIRECTORY_SEPARATOR);
include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php');
$pluginClass = hikashop_get('class.plugins');
$rates = $pluginClass->getMethods('shipping', '', '', $currency);
foreach($rates as $rate) {
echo '<li><strong>'.$rate->shipping_name.'</strong><br/>'.$rate->shipping_description.'</li>';
}
?>
</ul>
And here is an article on how to add PHP code in a Joomla article:
www.technetexperts.com/web/steps-to-writ...e-in-joomla-article/