Hey Bert_b_tree ,
Thanks for your reply!
Sometimes plugins or themes contain code that when a link is clicked, the page fades out to load the next page to give a slightly better experience for the enduser on slow connections. But it really depends on how it's coded.
Since Buttonizer buttons are links as well, that functionality gets triggered as well.
I've tried to locate the code on your site and it seems like it's part of your theme (so I think you cannot change it). However, I've wrote some JavaScript you can add to your site that should revert the behaviour:
window.addEventListener("click", (e) => {
if(
e.target.classList.contains('buttonizer-button') ||
(e.target.parentNode && e.target.parentNode.classList.contains('buttonizer-button')) ||
(e.target.parentNode.parentNode && e.target.parentNode.parentNode.classList.contains('buttonizer-button'))
) {
jQuery("#page.site").css("opacity", "1")
}
})
Are you able to add this script to your site? Perhaps using a header-footer plugin. You can also wrap the code in a <script>
tag.
Hope to hear from you soon again 🙂