Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Liuk88

    (@liuk88)

    Solved!

    Thread Starter Liuk88

    (@liuk88)

    That’s the problem:

    We have investigated your issue and found that the error is occurring because of two functions using one and same variable:

    function solofolio_cyclereact_thumbs_style($thumbs_toggle) {
    if ($thumbs_toggle == “true”) {
    return “display: block”;
    } else {
    return ‘display: none’;
    }
    }

    function solofolio_cyclereact_gallery_style($thumbs_toggle) {
    if ($thumbs_toggle == “true”) {
    return “display: none”;
    } else {
    return ‘display: block’;
    }
    }

    Many thanks,
    Luca

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