Hi ben880153 ,
Thanks for reaching out to us!
Our group limit is currently 50. This is quite a high limit already and if there are cases where you may need more groups, there usually is a better way to set it up. 🤔
You could just create 1 button, make it use JavaScript and add the contact information per page instead.
For example, per page you would add the contact information like this:
<script>
window.buttonizerPhoneNumber = "06123456789";
</script>
Then you can make a single Buttonizer button call this phone number using Javascript.
document.location.href = `tel:${window.buttonizerPhoneNumber}`
Or if you already have the contact information in the page, then we can skip the script part and just make the button get the contact information from the page.
document.location.href = `tel:${document.querySelector(".telnumber").innerText}`;
This way, you don't need to make a button and page rule for each of your listing and just reuse the same button instead.
Let me know what you think of this! 😄