• Resolved Daniel

    (@marketinggreenpaint)


    Hello!

    I am looking for help to solve the following problem:

    1) Product name on the shop where all products are listed, sometimes uses 2 lines(because name is long), so, how do I remove the button from the shop page and featured products on the homepage, but nowhere else.

    2) And this is the ideal solution for me, how could I “align” the buttons so that it works with Products that have 1 or 2 lines as a name?

    Hope you can help me.
    Thank you very much in advance,
    Daniel

    • This topic was modified 5 years, 7 months ago by Daniel. Reason: edited link

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can hide the buttons with this custom css:

    .woocommerce a.button.product_type_simple,
    .woocommerce a.button.product_type_variable {
      display: none;
    }

    This might remove other buttons you want to keep so check round the site.

    If you decide to keep the buttons, you can make the title element at least 2 lines high with:

    .woocommerce-loop-product__title {
      min-height: 53px;
    }
    Thread Starter Daniel

    (@marketinggreenpaint)

    @lorro Perfect! ??
    I opted for the 2nd solution.

    Thank you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove “Read more” button’ is closed to new replies.