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