Thanks Nicolas,
Can you confirm this is the correct item: 'Display > Views', (My template), Products, cart ... (on Line 119)' ?
I found the URL of the button does not modify after the view override:
<input type="submit" class="btn button hikashop_cart_input_button" name="checkout" value="結帳" onclick="var field=document.getElementById('hikashop_product_quantity_field_1');window.location='/main/zh/component/hikashop/checkout';return false;">
(the both http:// and https:// and
www.mydomain.com
did not appear, the html code just use the relative url)
but, the MINICART=NO part, the button changed with the modification :~) , I guess I found the incorrect code:
<input type="hidden" name="url" value="http%3A%2F%2Fwww.mydomain.com%2Fmain%2Fzh%2Fmarketplace%2Fhome">
Anyway, I found this possible part and don't know how to modify...
(same file, line 104)
<a class="hikashop_small_cart_checkout_link" href="<?php echo hikashop_completeLink('checkout'.$url_itemid); ?>">
(same file, line 126)
<a class="hikashop_small_cart_checkout_link" href="<?php echo hikashop_completeLink('cart&task=showcart&cart_id='.$cart_id.'&cart_type='.$cart_type.$url_itemid); ?>">
(same file, line 372)
[color=#004400]if($this->params->get('show_cart_proceed',1)) echo $this->cart->displayButton(JText::_('PROCEED_TO_CHECKOUT'),'checkout',$this->params,hikashop_completeLink('checkout'.$url_itemid),'');[/color]
Further, is there anyway to modify MINICART=YES to use POST method for the URL? and, what is the reason behind to use difference url method for the request? Thanks a lot.