Hi gshepard ,
Thanks for reaching out to us!
You could perhaps use a custom CSS to hide the group on tablets.
Paste this into your WordPress' Additional CSS setting:
/* big landscape tablets, laptops, and desktops */
@media screen and (max-width:961px) {
.buttonizer-group {
display: none !important;
}
}
Let me know if this works for you! 😄