Can I change product description from table to text format?

Can I change product description from table to text format?

Luxurymrkt
Globetrotter
771 2 164

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

Luxurymrkt_0-1699235843483.png

 

61B276D3-A353-4101-A74D-FBF184F91902.png

Thank You | mike
Replies 3 (3)

ZestardTech
Shopify Partner
6148 1100 1477

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;
}

 

ZestardTech_0-1699248749155.png

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

BSS-Commerce
Shopify Partner
3478 465 560

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"

 

view - 2023-11-06T135734.186.png

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

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


Product Labels by BSS | B2B Solution & Custom Pricing


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

tavidasilva
Visitor
1 0 0

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