Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #44776

    Kevin A
    Participant

    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

    #45004

    Rad
    Moderator

    Hi 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.

    #793762

    robotpants
    Participant

    Hi there, I’ve tried the background CSS for the shop page and it’s not changing the color. :/

    #794614

    Rue Nel
    Moderator

    Hello 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 / password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thank you.

    #799161

    robotpants
    Participant
    This reply has been marked as private.
    #799532

    Christopher
    Moderator

    Thanks.
    We’ll answer you on your own topic.