• Resolved freedacian

    (@freedacian)


    I dont need it on front I need a way to show a tooltip or info square on a specific plugin page in the dashboard, how can this be achieved? How to trigger the button to show?
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Buttonizer

    (@buttonizer)

    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! ??

    Plugin Author Buttonizer

    (@buttonizer)

    I’ll mark this support topic as resolved.

    Have fun using Buttonizer ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can I add buttonizer to only one page in dashboard’ is closed to new replies.