-
AuthorPosts
-
May 15, 2014 at 9:37 am #44776
Hi,
I installed WooCommerce and I am thinking of how can I make changes to my product page. In particular, I would like to ask:
1. How do i change the background of the product page? (i.e. add a background image/color)
2. How do i add a revolution slider at the top of the page?Thanks
May 15, 2014 at 11:10 pm #45004Hi Kevin,
Thank you for writing in!
1. Only possible by using css,
Examples :
/* For shop page */ .woocommerce.post-type-archive-product { background: url(your image link here) no-repeat; background-size: cover; background-color: read; background-attachment: fixed; } /* For individual product page */ .woocommerce.single-product { background: url(your image link here) no-repeat; background-size: cover; background-color: read; background-attachment: fixed; } /* For specific product page */ .woocommerce.single-product.postid-70 { background: url(your image link here) no-repeat; background-size: cover; background-color: read; background-attachment: fixed; }
2. Follow the discussion here http://theme.co/x/member/forums/topic/revolution-slider-on-blog-2/
And use this :
if( is_shop() ) { $entry_id = get_option('woocommerce_shop_page_id'); }
Instead of given changes from that thread.
Hope this helps.
February 12, 2016 at 9:41 pm #793762Hi there, I’ve tried the background CSS for the shop page and it’s not changing the color. :/
February 13, 2016 at 8:05 pm #794614Hello There,
Thanks for updating this thread! To assist you better with this issue, would you mind providing us the url of your site with login credentials so we can take a closer look? This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
To do this, you can make a post with the following info:
– Link to your site
– WordPress Admin username / passwordDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
Thank you.
February 16, 2016 at 9:56 pm #799161This reply has been marked as private.February 17, 2016 at 2:58 am #799532Thanks.
We’ll answer you on your own topic. -
AuthorPosts