1

I wonna modify cart-item-data to inline such as:

  • color : white
  • size : M

First image


I have code below.

Second image

7uc1f3r
  • 28,449
  • 17
  • 32
  • 50

2 Answers2

0

Go to woocommerce plugin folder and find folder templates and go to cart folder and find cart.php change table on that file

maddog
  • 83
  • 1
  • 1
  • 5
0

The general answer is CSS. You need the dd and dt elements to be inline instead of block level. Something like this might work:

dl.variation dt, dl.variation dd {
    display: inline-block;
}

It might also not work if there is a more specific rule somewhere else in your stylesheets or if something else comes later on in the stylesheets to override this. Impossible for me to say without knowing your theme and WooCommerce setup, but this is a good start.

helgatheviking
  • 25,596
  • 11
  • 95
  • 152