This topic has 43 replies, 3 voices, and was last updated 5 years, 3 months ago ago by Olga Barlow
Hi there for our store I would like to change the single item page. I want to put the product description next to the item and not show categories, stock levels and tags how can i do this?
Many Thanks
Sophie
Hello,
Tabs position you can change in Theme Options > Single Product page.
Add this code in style.css file of child-theme (https://www.8theme.com/downloads/ http://prntscr.com/n2znb3 https://developer.wordpress.org/themes/advanced-topics/child-themes/):
.single-product-page .product-info .product_meta .product_meta .tagged_as,
.single-product-page .product-info .product_meta .stock,
.single-product-page .product-info .sku_wrapper,
.single-product-page .product-info .posted_in {
display: none;
}
to remove tags, stock levels, SKU and categories from the Single product page.
Regards
Can you tell me please how to edit the footer, it is only allowing me to put things on the left hand side, not in any of the other columns along the space.
Many Thanks
Theme Options > Footer > Show footer demo blocks > Off.
Appearance > Widgets > add a static block in Footer area.
Please read our documentation – https://www.8theme.com/demo/docs/legenda/#footer https://youtu.be/HL7wtSaTcMU (WPBakery > Role Manager > Post types > Custom and check also the static blocks).
Regards
How do i make this work?? It changed the text but the product page doesnt change? Also how do you change the icon when you ad a video?
Many Thanks
Hello,
Sorry, but your request is a bit unclear for me.
Please describe the desired result in more details with screenshots.
You can use such screenshot maker as Lightshot https://prnt.sc/
Also, provide temporary wp-admin access http://prntscr.com/n9fc72
Regards
Thanks. I managed to get it to work on the additional css on the front end editor. I have just updated the theme and it has lost all my uploaded images, can you help me with that?
Many Thanks
Sophie
Hello,
Theme update could not remove media from the uploads folder.
Check if image files are in the uploads folder and if not then contact your hosting provider to find out why they disappeared.
Regards
Thank you, I just re uploaded all content, so you know if there is a way to remove where is says product information on a single product page?
Many Thanks
Hello,
Add the following custom to child theme style.css
.single-product-page .product-info .product_meta h4 {
display: none;
}
Regards
Great thank you, is there code that allows the add to cart button and the price to be centralised when there is no side panels in the single product page?
Hello,
Try this one
.single-product-page .span6 .price, .single-product-page .product-info .button {
float: none;
}
.single-product-page .product-info .product_meta {
text-align: center;
}
Regards
Great thank you! and how do i align the quantity box to the center?
I also wonder why i can see the quantity box on some products and not on others when they are all stock managed and have only 1 in stock?
Hello,
1) Add the following code to child theme style.css
.single .cart .quantity-box {
display: flex;
justify-content: center;
}
@media (max-width: 480px){
.single-product-page .quantity-box label {
width: auto;
}
.single-product-page .product-info .quantity {
margin: 0;
}
}
2) Because q-ty box is not necessary if you have only one product. This is the default WooCommerce option. Our theme does not manage this thing, you can enable Storefront theme(default WC theme) and check.
Regards
Thank you for the code, the only problem is when it is in ipad state the quantity text is not next to the box.
Hello,
Replace the previous code the following one
.single .cart .quantity-box {
display: flex;
justify-content: center;
margin: 10px 10px 20px 0;
}
@media (max-width: 768px){
.single-product-page .quantity-box label {
width: auto;
}
.single-product-page .product-info .quantity {
margin: 0;
}
}
Regards
Great thank you! that worked! Is there a way to add more padding at the top of the page between the title of the product and the link that sits underneath?
Thank you!
Hello,
Yes, sure
.page-heading h1 {
margin-bottom: 10px;
}
Regards
Hi How do I change the background colour of the footer? I want to change it to #513E50 and make the text on it white. I want it to copy the same layout as the home page
Hello,
Please provide us with temporary wp-admin access, so we can take a closer look at your settings.
Regards
Here are the details requested
Hello,
I would recommend you to create the footer using a static block. Create a new static block http://prntscr.com/ogahbl with “Footer” title and desired content http://prntscr.com/ogah3o then set the block in Appearance > Widgets > Footer 2 http://prntscr.com/ogahz8 (delete current content from the Footer 2 widget area + delete this custom code from the Home page http://prntscr.com/ogaiwk > then content of the new static block will be shown as footer for all pages on your site).
I hope this video will be helpful for you – https://youtu.be/HL7wtSaTcMU
Regards
Hi I am waiting for your reply.
Hello,
Did you read our previous answer on the second page http://prntscr.com/oijwky Seems you missed that. Please, follow the instructions and let me know if you still have the problems with footer.
regards
Will this allow me to change the background colour?
Hi Thank you that worked well, but the footer does not respond well when it goes down to mobile and ipad size, can you help with this formatting?
Hello,
Check now, please. If you want to implement another layout for the mobile version then provide us with the mockup of the mobile version to get correct suggestions.
Regards
Hi Olga, thats great, how did you fix it?
Hello,
Enabled stretch row option and aligned the content http://prntscr.com/ojciwn
Removed the default margin-bottom for the row http://prntscr.com/ojcjdq
Managed the paddings for the columns http://prntscr.com/ojcjnv
And elements http://prntscr.com/ojck00
Added custom class to align the logo for the mobile http://prntscr.com/ojckcf + custom code http://prntscr.com/ojcl31
That’s all.
Regards
You must be logged in to reply to this topic.Log in/Sign up