Hey @freedacian ,
Thank you for reaching out to us.
Buttonizer could be added to the WordPress Admin Dashboard by manually adding the <script>
integration code manually to the Admin Dashboard. However, this is not something we support via the plugin or will support in the future.
However, you can add Buttonizer to the Admin dashboard by using the integration script, you can find your sites integration code via our Buttonizer dashboard.
1. Select your site
2. Then scroll down until you see the Add to website
section
3. Click that button
4. Copy the visible code
Then, you’ll need to add the following script below to your functions.php
.
You can check the plugins admin page query by checking the plugin URL, it’s the part after page=
.
add_action('admin_head', 'buttonizer_admin_integration');
function buttonizer_admin_integration() {
// Only add Buttonizer to a specific admin page
// If you want to show Buttonizer everywhere on your admin dashboard, remove this line
if(!isset($_GET["page"]) || $_GET["page"] !== "plugin-name") return "";
echo '
/* Paste Buttonizer Integration code here */
';
}
Let me know if this helps! ??