Page 1 of 1

How can i remove points from "Share"

Posted: 14 May 2018, 02:13
by pleibling
Hi, i want to remove Points like Facebook, Google+, Pinterest and so on (but Download and Email i want to stay) on the Share Button from an Image.

How can i do that?

Thanks a lot for your help.

Re: How can i remove points from "Share"

Posted: 14 May 2018, 06:09
by mjau-mjau
Goto Settings > Toolbar > Items, and delete the items you don't want/need.
Image

You need to make sure the syntax is correct, without orphan commas. It should look like this I guess:
Code
{
  "items": [
    {
      "id": "share",
      "icon": "share",
      "label": "Share"
    },
    {
      "id": "mailto",
      "icon": "envelope",
      "label": "Share by Email",
      "url": "mailto:?subject={{text}}&body=Hi,%0D%0A%0D%0A{{description}}%0D%0A{{url}}",
      "color": "#00bcf2",
      "display": "overlay|popup"
    },
    {
      "id": "download",
      "icon": "download",
      "label": "Download",
      "url": "{{raw_image_url}}"
    }
  ]
}

Re: How can i remove points from "Share"

Posted: 14 May 2018, 06:44
by pleibling
Thanks, thats solve the problem.