Hi,
SOLVED by :
"Editing the view "checkout / terms" via the menu Display > Views.
And replace the code generating the popup by your custom link to an article" as Xavier said before (thanks to him)
So i have done some modifications and here is what i have : (the orange code was the original one, which was launching the popup, i have commented it) and add the line beginning with the "echo" command like above (in green, my code) ...
***************************************************************
<?php
$text = JText::_('PLEASE_ACCEPT_TERMS');
$terms_article = $this->config->get('checkout_terms');
$terms_width = $this->config->get('terms_and_conditions_width',450);
$terms_height = $this->config->get('terms_and_conditions_height',480);
if(!empty($terms_article)){
/*$popupHelper = hikashop_get('helper.popup');
$text = $popupHelper->display(
$text,
'HIKASHOP_CHECKOUT_TERMS',
JRoute::_('index.php?option=com_content&view=article&id='.$terms_article.'&tmpl=component'),
'shop_terms_and_cond',
$terms_width, $terms_height, '', '', 'link'
);*/
/* HERE IS MY CODE* : target='_blank' makes the article appear in a new window */
echo "<a href='******THE LINK TO YOUR ARTICLE******' target='_blank'>Veuillez accepter les conditions générales de vente avant de continuer</a>";
}
?>
***************************************************************************************
I hope it'll help someone.
Thanks.