• Resolved dhesse90

    (@dhesse90)


    Hi, I like the functionality of the gallery images better in the old version, aside from the new full-screen mode that is nice.

    I have two websites with similar info. One I have upgraded, and the other I haven’t. In the upgraded version, I mattempted to make CSS changes to get it back to the original. This works, except the gallery image transitions (blinks in and out) and a low-res version of main image shows up in its place.

    The site with the old Woocommerce’s URL is http://www.RoyceRolls.net.
    The site with the new Woocommerce’s URL is http://www.RoyceRollsGSA.com, and has the following added CSS code below:

    .woocommerce div.product div.images .flex-control-thumbs li img.flex-active, .woocommerce div.product div.images .flex-control-thumbs li img:hover{
    display: none;
    }
    .woocommerce div.product div.images .flex-control-thumbs li{
    width: 100%	;
    }
    .woocommerce div.product div.images .flex-control-thumbs li img{
    opacity: 1;
    }

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

Viewing 1 replies (of 1 total)
  • Thread Starter dhesse90

    (@dhesse90)

    I had previously tried Mike’s solution of remove_theme_support( 'wc-product-gallery-slider' ); which didn’t work.

    However, it worked once I wrapped it with

    add_action( 'after_setup_theme', 'remove_pgz_theme_support', 100 );
    
    function remove_pgz_theme_support() { 
    remove_theme_support( 'wc-product-gallery-slider' );
    }

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

    • This reply was modified 6 years, 12 months ago by bdbrown.
    • This reply was modified 6 years, 12 months ago by bdbrown.
    • This reply was modified 6 years, 12 months ago by bdbrown.
Viewing 1 replies (of 1 total)
  • The topic ‘3.0 Gallery Old Functionality’ is closed to new replies.