Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
The page I am talking about: https://www.eddiestech.co.uk/product/manchester-university-sign/
I have been trying to create a WooCommerce shop. I have an item set up, but the image of the product is shown twice. One as a header and one as the product image near the name. I would like to remove the header image. I have seen many CSS things to add that haven't worked!
Have you tried this?
.post-format {
display: none;
}
This is how it looks after adding that code.
Also, is weird your theme options don't include to remove the featured image.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I really need your help. I would like all my prices to show on the same line. Right now, the price shows below the product name, and depending on the length of the name, the price shows after.
Can I somehow force the prices to get aligned on the same line?
You can check http://dansupplies.dk to see what I mean. The first box has 4 products, and these prices should be on the same line.
My “related products” that show on the product page also needs this fix, if it’s possible of course.
Big high five!
The most simple solution would be to add a min-height to the .woocommerce-loop-product__title class.
Screenshot
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I have 3 cards on my wordpress site homepage, jookaskids.com.ng, it has a link in it already, and I don't want only the link to be clickable but the whole card.
I hope my question is built well.
Example here on this bootstrap page HERE
The Card Img Here
Wrap the whole HTML structure of the card into an a tag & specify corresponding href attribute.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
My site:
When I was setting up the store I was prompted to create a banner. I thought, gee that looks great, wonder if I will be able to remove it....
Well, I cannot seem to find where to remove the banner. It is only on the home page and only when you first load.
Thanks!
Andrew
You can disable the banner by logging into your Wordpress backend and doing the following steps:
Open Appearance > Customizer
Open the Woocommerce tab
Click on Store notice
Disable the store notice by removing the check in the checkbox.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I have a Woocommerce shop running on my site, https://www.uproute.co.uk, and the product variation dropdown is showing white text on a white background. I don't know if this is due to the theme that I'm using or CSS that I have implemented. Is anyone able to point me in the right direction?
Happy to answer questions or provide information. Any help is greatly welcomed.
Just add this code to your css file or directly to the page in <style></style> tag:
.select2-results__option {
color: black;
}
The select2-results__option is responsible for modifying the text and more in your Woo dropdown list
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
My website is build on Wordpress using the Theme "BeTheme", which creates html junk like empty inline styles (style="").
How can I remove this?
I thought of two ways: If I would know in which php-File the style attribute is attached, I could do something like
if (style is empty)
{
don't attach style attribute
}
If I can't get there, I could clean the page afterwards with something like
replace(style="", '')
How can I achive this in an elegant way, without slowing my page down?
if ($("div").attr("style").length<=0)
{
$("div").removeAttr("style");
}