• 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)
  • Plugin Author SilkyPress

    (@diana_burduja)

    Hi,

    thank you for mentioning the bug.

    I’ve solved it in the 1.5 version.

    Thread Starter mdxclr

    (@mdxclr)

    Nope, its not fixed

    Plugin Author SilkyPress

    (@diana_burduja)

    Sorry, my bad. Try again with the 1.6 version.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Bug with Enfold theme’ is closed to new replies.