• Hi, using a combo of the WordPress 2013 theme and the WooCommerce theme on my clients handmade jewelry site.

    The problem I’m having is the theme is displaying the item numbers (irrelevant for the shopping display) when a category is displayed. Is this something I have to search for within the CSS of the WooCommerce/2013 Theme, or do I dig into the category.php information?

    The page here is an example of the item number display: Copper Collection

    Thanks for any help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • You can use CSS.

    .items p{
      display: none;
    }
    Thread Starter damanb

    (@damanb)

    Thanks, worked perfectly!

    -Daman

    You are welcome! Please mark the topic resolved.

    I second that! Thank you respectyoda. You are obviously a WP magician, genius, expert or all three. Wondering if you have any fixes for something that has happened to the alignment of the “Quantity” heading on my shopping cart. The number below the “Quantity” heading is not centered below. The url is https://ledanse.com/newledansesite/cart/

    @scottledanse, I wouldn’t say I am an expert with WordPress yet, but I know quite a lot to this date.

    I took a look at your website. Just add this line to the code for this element.

    .items span{
     //already a bunch of code
     text-align: center;
    }

    Thank you again respectyoda! I am a complete newbie when it comes to code (more like utterly ignorant) so I don’t even know where to go to add the line of code. I would love to learn. When you say “this element” what does that mean? Do I go to the Editor in Appearance? And if so which template..or am I completely looking in the wrong place?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Trying to remove Item numbers from a WooCommerce WP site’ is closed to new replies.