"Select Options" not available on shop page

Hi there!

I had a developer in the backend of my site that screwed a whole bunch of things up. Hooray!
I am now trying to add a CTA to each product on the shop page, but nothing shows up except for the new Subscription product I added. I added the below code to try and show the button below the price, but that only worked for the subscription product.

.woocommerce li.product .entry-header .button {
position: relative;
opacity: 1;
top: auto;
margin-top: 10px;
}

My guess is that there is some CSS somewhere hiding whatever I need for the button to show. What’s the selector that controls the “Select Options” button and is there a way to change the text on it?

Thanks!

Hi there,

This block of CSS code is causing the select option button not to show up:

.woocommerce li.product .entry-header .product_type_simple, .woocommerce li.product .entry-header .product_type_variable {
    display: none !important;
}

Kindly remove the code which is possibly in X > Theme Options > CSS:

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.