Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @ggdesigns,

    There are several ways to do this:

    1. Tinkering a lot with CSS
    2. Modifying your Woocommerce template files with content-single-product.php in particular (on a child theme)
    3. Inserting this code in functions.php (preferably on a child theme)

    /* Remove product thumbnails below the Main product image from product page then add it below the Entry Summary */
    
    remove_action( 'woocommerce_product_thumbnails', 'woocommerce_show_product_thumbnails', 20 );
    add_action ('woocommerce_single_product_summary' ,'woocommerce_show_product_thumbnails', 60);

    Let us know if this works. Hope this helps, cheers!

    I am looking to do the exact same thing but not having much luck. Were you able to figure this out?
    I tried adding the css that wooassist suggests but that just moves the thumbnails to the left side of the product area. It doesn’t stack the product thumbnails on top of each other.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change product images positions’ is closed to new replies.