Bonjour,
Merci pour ta réponse.
Alors en "trifouillant" un peu, je me suis rendu compte qu'en modifiant dans "affichage" > "vue" > "product" > "option" selectionMethod : check par selectionMethod : generic... il m'affiche uniquement "oui" dans le select, et le rajoute bien dans le panier.
if(empty($optionElement->variants)) {
if(!$optionElement->product_published || empty($optionElement->product_quantity))
continue;
if($selectionMethod != 'generic')
$option_values[] = JHTML::_('select.option', 0, JText::_('HIKASHOP_NO'));
$text = JText::_('HIKASHOP_YES');
$this->row =& $optionElement;
$option_values[] = JHTML::_('select.option', $optionElement->product_id, $text);
}
Donc grâce à cette première petite modification, j'arrive a faire disparaître le "non" et a forcé le Select sur oui.