• Resolved mdxclr

    (@mdxclr)


    Hello,
    I’m using the latest version of WC and Enfold theme.
    In that theme product gallery has opacity: 0, and in your plugin single-product.js removed line with making that opacity: 1;

    // No images? Abort.
    		if ( 0 === this.$images.length ) {
    			return;
    		}

    Should be:

    // No images? Abort.
    		if ( 0 === this.$images.length ) {
    			this.$target.css( 'opacity', 1 );
    			return;
    		}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bug with Enfold theme’ is closed to new replies.