You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Information passed form shareData object does not seem to reach the redirected page on share platform. Twitter share captures the title attribute, while google and facebook share pages dont show up anything (on mobile google-plus app capture the url to be shared, web version does not).
Here is my shareData object:
shareData: function() {
var resp = { title: "Really appreciate genuine work happening at "+this.details.name,
excerpt:this.details.mission,
description:this.details.description,
summary:this.details.about,
author:"via SociallyHumble.com"
};
return resp;
},
Here is my shareit config:
ShareIt.configure({
sites: { // nested object for extra configurations
'facebook': {
'appId': "960820120603379" // use sharer.php when it's null, otherwise use share dialog
},
'twitter': {},
'googleplus': {},
'pinterest': {}
},
classes: "btn-sm share-btn", // string (default: 'large btn')
// The classes that will be placed on the sharing buttons, bootstrap by default.
iconOnly: true, // boolean (default: false)
// Don't put text on the sharing buttons
applyColors: true, // boolean (default: true)
// apply classes to inherit each social networks background color
faSize: '', // font awesome size
faClass: '' // font awesome classes like square
});
The text was updated successfully, but these errors were encountered:
Information passed form shareData object does not seem to reach the redirected page on share platform. Twitter share captures the title attribute, while google and facebook share pages dont show up anything (on mobile google-plus app capture the url to be shared, web version does not).
Here is my shareData object:
shareData: function() {
var resp = { title: "Really appreciate genuine work happening at "+this.details.name,
excerpt:this.details.mission,
description:this.details.description,
summary:this.details.about,
author:"via SociallyHumble.com"
};
return resp;
},
Here is my shareit config:
ShareIt.configure({
sites: { // nested object for extra configurations
'facebook': {
'appId': "960820120603379" // use sharer.php when it's null, otherwise use share dialog
},
'twitter': {},
'googleplus': {},
'pinterest': {}
},
classes: "btn-sm share-btn", // string (default: 'large btn')
// The classes that will be placed on the sharing buttons, bootstrap by default.
iconOnly: true, // boolean (default: false)
// Don't put text on the sharing buttons
applyColors: true, // boolean (default: true)
// apply classes to inherit each social networks background color
faSize: '', // font awesome size
faClass: '' // font awesome classes like square
});
The text was updated successfully, but these errors were encountered: