Search…

X3 Photo Gallery Support Forums

Search…
 
pleibling
Experienced
Topic Author
Posts: 45
Joined: 02 Jan 2017, 09:59

How can i remove points from "Share"

14 May 2018, 02:13

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.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: How can i remove points from "Share"

14 May 2018, 06:09

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}}"
    }
  ]
}
 
pleibling
Experienced
Topic Author
Posts: 45
Joined: 02 Jan 2017, 09:59

Re: How can i remove points from "Share"

14 May 2018, 06:44

Thanks, thats solve the problem.