Mobile share functionality

You can see the editor of how to set this up here and the preview here (only works in mobile browser).
  1. 1.
    Install the Toolbox plugin
  2. 2.
    Create an 'on-click' workflow on whatever element you want to trigger the share function.
  3. 3.
    Add a single action, 'Run javascript' (Found under plugin actions)
  4. 4.
    Paste into the action the following code:
    1. 1.
      navigator.share({
      title: document.title,
      text: '<THIS TEXT WILL BE SHARED WITH THE URL>',
      url: '<WWW.EXAMPLEURL.COM>',
      });
  5. 5.
    Replace the contents of <> (including the <>) with your own text. In the above example, the shared text would be: "THIS TEXT WILL BE SHARED WITH THE URL WWW.EXAMPLEURL.COM"
  6. 6.
    You will also probably also want to install the IsMobile plugin and only show the share functionality if the user is on a mobile device