Hello support,
Is it possible to make a button hiden by php coding
many thanks
Hi @tribew,
You can do it using CSS.
To hide your button, you can add this in your button Element’s CSS
$el {
display:none;
}

Hope this helps
many thanks
i’d like a conditional display such as
if ($img) {
$el {display:yes;}
} else {
$el {display:none;}
}
is it possible ?
Sorry for the confusion. Regretfully, that is not possible. Custom development would be needed to achieve that.
Thanks.
ok many thanks
You’re welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.