Can I change product description from table to text format?

is it possible to have my product description

as text instead of table? It comes in from a source as a table but I’d like it to just be plain text like picture 1 supplier not the table layout

my site is https://luxurymrkt.com/products/stone-island-suede-sheepskin-jacket

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the Bottom of the file:
.collapsible-content__inner.rte .table-wrapper {
display: none;
}

Hi @Luxurymrkt ,

Your theme isn’t in theme store of shopify, so I can’t check where is the liquid file of product page. You can try find file name in Theme->Edit code, enter string like “product.liquid” or “.liquid”, and check any file name contains “product”

Find class name in file “table-wrapper”

the code can be like (note: similar, not exactly like that)

<table>
<tbody>
{%- for product in products -%}
<tr>
<td>{{product-properties}}</td> <td>{{description}}</td>
</tr>
{%- endfor -%}
....
</tbody></table>

delete element table, tbody, tr, td, change to (note: code must be inside the for loop)

<div>{{product-properties}}: {{description}}</div>

and you can add style for this element after that

For me worked: Go to the product description in shopify Dashboard. Mark a Cell and hold ALT/option + DELETE. Repeate with every remaining cell.