Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

100
Views
Remove columns from table in liquid (Shopify Store)

I'm actually not sure what is the best way to achieve this. But I need to remove the column "GroupName" and everything under it from this table.

It is pulled from a Datafeed and how it is set up, there is no easy way to strip it using regex.

Is there a code snippet I can use to remove this?

here is an image of the table

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Use this CSS code it will hide your first th and first td

<style>
table tr td:first-child {
  display:none;
}

table tr th:first-child {
  display:none;
}
</style>
<table>
  <tr>
    <th >Group Name</th>
    <th>Name</th>
    <th>Value</th>
  </tr>
  <tr>
    <td >Specification</td>
    <td>Cache</td>
    <td>Total L2 cache 4MB; Total L3 Cache 32Mb </td>
  </tr>
</table>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!