diff --git a/_docs/website/index.html b/_docs/website/index.html
index 59abbbe2b1..449e24802e 100644
--- a/_docs/website/index.html
+++ b/_docs/website/index.html
@@ -289,7 +289,7 @@
Configuration
share |
- share defines which share buttons beneath the entry are visible. Default is share=gtfprde (g = google, f = facebook, t = twitter, p = pocket, d = delicious, w = wallabag, e = email). When you would like to show only facebook and twitter share button use share=ft. |
+ share defines which share buttons beneath the entry are visible. Default is share=tfpe (f = facebook, t = twitter, p = pocket, w = wallabag, e = email). When you would like to show only facebook and twitter share button use share=ft. |
wallabag |
diff --git a/defaults.ini b/defaults.ini
index 5149bf4b07..a4a360fbc9 100644
--- a/defaults.ini
+++ b/defaults.ini
@@ -28,7 +28,7 @@ auto_mark_as_read=0
auto_collapse=0
auto_stream_more=1
anonymizer=
-share=gtfpde
+share=tfpe
wallabag=
wallabag_version=1
allow_public_update_access=
diff --git a/public/images/delicious.png b/public/images/delicious.png
deleted file mode 100644
index 85666d4621..0000000000
Binary files a/public/images/delicious.png and /dev/null differ
diff --git a/public/images/googleplus.png b/public/images/googleplus.png
deleted file mode 100644
index a8bee2a5b1..0000000000
Binary files a/public/images/googleplus.png and /dev/null differ
diff --git a/public/js/selfoss-shares.js b/public/js/selfoss-shares.js
index 46928e9ce0..28f7ff0719 100644
--- a/public/js/selfoss-shares.js
+++ b/public/js/selfoss-shares.js
@@ -8,12 +8,6 @@ selfoss.shares = {
this.enabledShares = enabledShares;
this.initialized = true;
- this.register('delicious', 'd', function(url, title) {
- window.open('https://delicious.com/save?url=' + encodeURIComponent(url) + '&title=' + encodeURIComponent(title));
- });
- this.register('googleplus', 'g', function(url) {
- window.open('https://plus.google.com/share?url=' + encodeURIComponent(url));
- });
this.register('twitter', 't', function(url, title) {
window.open('https://twitter.com/intent/tweet?source=webclient&text=' + encodeURIComponent(title) + ' ' + encodeURIComponent(url));
});