FROM CACHE - fr_header
RÉSOLU

Liquid et HTML

mapetiteportee
Nouveau membre
4 0 0

Salut! J'ai l'app Order Printer et je peux éditer le code pour faire apparaitre les infos que je veux.

Je ne réussi pas à faire apparaître le product.title et variant.title. Pourtant, le line_item.title fonctionne bien.

 

     <tr>
          <td><p style="font-size:40px">{{ line_item.quantity }}  </p></td>
        <td><p style="font-size:26px">{{ line_item.title }}</p></td>
<td><p style="font-size:26px">{{ product.title }}</p></td>
<td><p style="font-weight:bold;font-size:40px">{{ variant.title }}</p></td>
       <td><img  src="{{ line_item.product.featured_image | product_img_url: 'medium' }}" /></td>
      </tr>
 
line_item.title

Returns the title of the line item. line_item.title combines both the line item's product.title and the line item's variant.title, separated by a hyphen.

Input

{{ line_item.title }}

Output

Balloon Shirt - Medium

To output just the product title or variant title, you can access the title of the respective variables.

Input

Product title: {{ line_item.product.title }}
Variant title: {{ line_item.variant.title }}

Output

Product title: Balloon Shirt
Variant title: Medium
1 SOLUTION APPROUVÉE

JHKCreate
Shopify Expert
3571 639 917

Succès.

Bonjour!

En se basant sur l'objet du line item: The line_item object (shopify.dev) on voit que product.title doit etre plutot: line_item.product.title

Pouvez vous essayer ceci?

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com

Voir la solution dans l'envoi d'origine

1 RÉPONSE 1

JHKCreate
Shopify Expert
3571 639 917

Succès.

Bonjour!

En se basant sur l'objet du line item: The line_item object (shopify.dev) on voit que product.title doit etre plutot: line_item.product.title

Pouvez vous essayer ceci?

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com