Hi,
Thanks for the report, we corrected it on our end.
First of all, thanks to edit the $live_site value to have
www.roarpilates.com.au/dev_j3/
Then thanks to edit the file "administrator/components/com_hikashop/helpers/helper.php" and replace the function "hikashop_cleanUrl()" by:
function hikashop_cleanURL($url, $forceInternURL=false){
$parsedURL = parse_url($url);
$parsedCurrent = parse_url(JURI::base());
if($forceInternURL==false){
if(isset($parsedURL['scheme'])){
return $url;
}
}
if(preg_match('#https?://#',$url)){
return $url;
}
if(preg_match('#www.#',$url)){
return $parsedCurrent['scheme'].'://'.$url;
}
if($parsedURL['path'][0]!='/'){
$parsedURL['path']='/'.$parsedURL['path'];
}
if(!isset($parsedURL['query']))
$endUrl = $parsedURL['path'];
else
$endUrl = $parsedURL['path'].'?'.$parsedURL['query'];
if(!empty($parsedCurrent['port']) && $parsedCurrent['port']!= 80){
$endUrl = ':'.$parsedCurrent['port'].$endUrl;
}
if(preg_match('#.*/#',$parsedCurrent['path'])){
$parsedCurrent['path'] = preg_replace('#/$#','',$parsedCurrent['path']);
}
$cleanUrl = $parsedCurrent['scheme'].'://'.$parsedCurrent['host'].$parsedCurrent['path'].$endUrl;
return $cleanUrl;
}