THELIA Forum

Welcome to the THELIA support and discusssion forum

Announcement

Rejoignez la communauté sur le Discord Thelia : https://discord.gg/YgwpYEE3y3

Offline

#1 SPIP-THELIA

(12-11-2013 09:54:08)


Bonjour

j'ai un site en développement

SPIP 3.0.10 et thelia V 1.5.4.1
j'ai établi des liens entre des rubriques "déclinables" thélia et mes articles SPIP et jusque là tout fonctionne.
toutes les références s'affichent bien sous mes articles SPIP,
mais je bloque au moment d'ajouter une référence dans le panier

dans ma boucle spip j'ai :


<THELIA_PROD type="PRODUIT" rubrique="#ID_RUBRIQUETHELIA" >
<form action="#URL_PAGE{panier,lang=#LANG}" method="post" id="formAjouterTHELIA-ID">
<input type="hidden" name="thelia_action" value="ajouter" />
<input type="hidden" name="ref" value="THELIA-REF" />
	<tr>
		<td>
        THELIA-TITRE
        </td>
       
          <td>
      THELIA-PRIX&nbsp;€
        </td>
          <td>
       <input type="submit" class="LIEN_commander" value="ajouter panier" />
        </td>
          <td>
        THELIA-POIDS kg
        </td>

</form>

si je clique sur le bouton "ajouter au panier", je passe à la page "panier" mais le panier est vide ?

qu'est ce qui me manque pour que le panier soit incrémenté ?

Offline

#2 Re: SPIP-THELIA

(12-11-2013 13:26:45)


Bonjour,

Peut on voir le code html généré ?


Plugins : Modèles Thelia | Boucle libre | Rubriques déclinables en produits | Colissimo Access/Expert

Offline

#3 Re: SPIP-THELIA

(14-11-2013 16:47:45)


voici le html généré pour un article SPIP ayant deux produits thelia associé

 <table class="spip" style="width: 100%; text-align: center;">
		<thead>
			<tr>
				<th width="20%">
					Référence
				</th>
				<th width="20%">
					Prix TTC
				</th>
				<th width="21%">
					Quantité
				</th>
				<th width="22%">
					Poids
				</th>
			</tr>
		</thead>
		<tbody>
<form action="spip.php?page=panier&amp;lang=fr" method="post" id="formAjouter17">
<input type="hidden" name="thelia_action" value="ajouter" />
<input type="hidden" name="ref" value="ACORUSGRAMG9" />
	<tr>
		<td>
        ACORUS Gramineus A0020 Godet 9cm
        </td>
          <td>
      3.50&nbsp;€
        </td>
          <td>
       <input type="submit" class="LIEN_commander" value="ajouter panier" />
        </td>
          <td>
        0.5 kg
        </td>
</form>
<form action="spip.php?page=panier&amp;lang=fr" method="post" id="formAjouter18">
<input type="hidden" name="thelia_action" value="ajouter" />
<input type="hidden" name="ref" value="ERIOPHORUMANGG9" />
	<tr>
		<td>
        ERIOPHORUM Angustifolium A0020 Godet de 9cm
        </td>
          <td>
      3.50&nbsp;€
        </td>
          <td>
       <input type="submit" class="LIEN_commander" value="ajouter panier" />
        </td>
          <td>
        0.5 kg
        </td>
</form>
	</tr>
     	</tbody>
		</table>