Re arrange woocommerce product page

Home Forums Jevelin Theme Re arrange woocommerce product page

Home Forums Jevelin Theme Re arrange woocommerce product page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    RESOLVED Posts
  • worldofpixels
    Participant

    Hi,

     

    Sorry to post so much in such a short time, but it will soon be done, the end is close 🙂

     

    How can I rearrange a woocommerce product page.

    For example, http://www.worldofpixels.be/product/foto-op-hout/

     

    You can see the picture left, and on the right side there is text and images. But they stay on the right side.

    I would prefer a better view, for example no picture on the left and a full width page. Just like a “normal” page or a “blog”.

     

    Can you please help ?

     

    Kind regards,

    Ben

     

    Hi Ben,

     

    I hope you are well today and thank you for your question.

     

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .single-product .sh-woo-layout-left,
    .single-product .sh-woo-layout-right {
        width: 100%;
    }
    .single-product .woo-short-description div img {
        clear: both;
    }

     

    If you do not want to display left side image then also use the below CSS code.

     

    .single-product .sh-woo-layout-image {
        display: none;
    }

     

    Best regards,
    Shufflehound team

    worldofpixels
    Participant

    In combination, I can create something like this

    .single-product.postid-8619  .sh-woo-layout-left,
    .single-product.postid-8619  .sh-woo-layout-right,
    .single-product.postid-8612  .sh-woo-layout-left,
    .single-product.postid-8612  .sh-woo-layout-right,
    .single-product.postid-8610  .sh-woo-layout-left,
    .single-product.postid-8610  .sh-woo-layout-right,
    .single-product.postid-8608  .sh-woo-layout-left,
    .single-product.postid-8608  .sh-woo-layout-right,
    .single-product.postid-8603  .sh-woo-layout-left,
    .single-product.postid-8603  .sh-woo-layout-right,
    .single-product.postid-8602  .sh-woo-layout-left,
    .single-product.postid-8602  .sh-woo-layout-right,
    .single-product.postid-8601  .sh-woo-layout-left,
    .single-product.postid-8601  .sh-woo-layout-right,
    .single-product.postid-8600  .sh-woo-layout-left,
    .single-product.postid-8600  .sh-woo-layout-right    {
    width: 100%;
    }

    so the problem is solved, thanks !

    You are most welcome here 🙂

Viewing 4 posts - 1 through 4 (of 4 total)