Hi regular1 , interesting question 🙂
You might try the adding the following code to your website. This example code uses jQuery, but hides Buttonizer as soon someone enters text in an input or textarea. When moving to another page, the buttons will appear again.
jQuery(document).ready(function() {
jQuery("input, textarea").keyup(function() {
jQuery(".buttonizer").hide();
});
});
This should do the trick. Let me know if this helps 🙂