Skip to main content
Category: Navigation · Opens: an external link

Mental model

A URL Button is an external link. Press it to open a web address — docs, a store page, a support site — optionally in a new tab.

When to use it

  • Link out to an external site or resource
  • A “buy,” “support,” or “learn more” button

Settings

General / Style

  • Target URL — the link to open
  • Open in new tab
  • Button text · icon · icon position · variant · size
  • Show label / icon / container
  • Background / border / text color · padding

Script API example

The same interactions from a dashboard script:
// Count outbound clicks
widget.on('shopBtn', 'click', () => {
  storage.set('shop_clicks', (storage.get('shop_clicks') || 0) + 1);
});

Navigate Page

For internal dashboard pages.