-
AuthorPosts
-
timtecsa Friend
timtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
October 27, 2015 at 11:25 pm #719200I set up an addthis account ‘b24’ and chose some social icons, pasted the codes into the template etc. Some icons don’t appear. Also how can I choose to show coloured icons like those used in Teline V ?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 28, 2015 at 8:10 am #719327Hi Tim,
In this template, we use font awesome icons for social icons in share this tool. Unfortunately, these are not pre-defined icons for some socials network that you’re using like viber, …
You can see the declaration via this file: /root/templates/ja_magz_ii/less/style.less
&.aticon-facebook:before {
content: "f09a";
}&.aticon-twitter:before {
content: "f099";
}&.aticon-google_plusone_share:before {
content: "f0d5";
}&.aticon-linkedin:before {
content: "f0e1";
}&.aticon-pinterest_share:before {
content: "f0d2";
}&.aticon-digg:before {
content: "f1a6";
}&.aticon-print:before {
content: "f02f";
}&.aticon-email:before {
content: "f0e0";
}
If you want to use an alternative icon for viber, you can add like this:
&.aticon-viber:before {
content: "f095";
}
this is icon for phone
Check out this reference for list of content values of FA icons: http://astronautweb.co/snippet/font-awesome/
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 28, 2015 at 8:10 am #753014Hi Tim,
In this template, we use font awesome icons for social icons in share this tool. Unfortunately, these are not pre-defined icons for some socials network that you’re using like viber, …
You can see the declaration via this file: /root/templates/ja_magz_ii/less/style.less
&.aticon-facebook:before {
content: "f09a";
}&.aticon-twitter:before {
content: "f099";
}&.aticon-google_plusone_share:before {
content: "f0d5";
}&.aticon-linkedin:before {
content: "f0e1";
}&.aticon-pinterest_share:before {
content: "f0d2";
}&.aticon-digg:before {
content: "f1a6";
}&.aticon-print:before {
content: "f02f";
}&.aticon-email:before {
content: "f0e0";
}
If you want to use an alternative icon for viber, you can add like this:
&.aticon-viber:before {
content: "f095";
}
this is icon for phone
Check out this reference for list of content values of FA icons: http://astronautweb.co/snippet/font-awesome/
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
October 29, 2015 at 3:47 pm #720225@Saguaros I have discovered that one must select the largest addthis icons or the css for the buttons is stuffed up (TIP) but still no font awesome icon for ‘+’ nor ‘WhatsApp’
Viber button opens Email window? I have Viber app installed.
I tried adding to the /root/templates/ja_magz_ii/less/style.less as follows
}
&.aticon-email_app:before {
content: “f0e0”;
}
&.aticon-viber:before {
content: “f095”;
}
&.aticon-plus-square:before {
content: “f0fe”;
}&.at-svc-email_app {
background-color: @bran d-secondary;
}
&.at-svc-viber:before {
background-color: @bran d-secondary;
}
&.at-svc-plus-square:before {
background-color: @bran d-secondary;
}But I don’t see the requested ‘+’ nor ‘Email’ buttons although service is present.
What am I missing? Also how to ensure popups or new tab instead of same tab ?
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
October 29, 2015 at 3:47 pm #753237@Saguaros I have discovered that one must select the largest addthis icons or the css for the buttons is stuffed up (TIP) but still no font awesome icon for ‘+’ nor ‘WhatsApp’
Viber button opens Email window? I have Viber app installed.
I tried adding to the /root/templates/ja_magz_ii/less/style.less as follows
}
&.aticon-email_app:before {
content: “f0e0”;
}
&.aticon-viber:before {
content: “f095”;
}
&.aticon-plus-square:before {
content: “f0fe”;
}&.at-svc-email_app {
background-color: @bran d-secondary;
}
&.at-svc-viber:before {
background-color: @bran d-secondary;
}
&.at-svc-plus-square:before {
background-color: @bran d-secondary;
}But I don’t see the requested ‘+’ nor ‘Email’ buttons although service is present.
What am I missing? Also how to ensure popups or new tab instead of same tab ?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 30, 2015 at 7:10 am #720365You can find available content values for FA icons here: http://astronautweb.co/snippet/font-awesome/ (for ‘+’ / ‘Emaill’)
And your site is running with css (Development Mode is set OFF) so when you change in less file as above, you will need to compile less to css ( REMEMBER to backup all of current css files first as when compiling, they will be overridden).
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 30, 2015 at 7:10 am #753323You can find available content values for FA icons here: http://astronautweb.co/snippet/font-awesome/ (for ‘+’ / ‘Emaill’)
And your site is running with css (Development Mode is set OFF) so when you change in less file as above, you will need to compile less to css ( REMEMBER to backup all of current css files first as when compiling, they will be overridden).
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
October 30, 2015 at 2:04 pm #720522I have added these below but no font awesome images show except Viber (phone) which opens an email popup. I have no css edits except in custom.css so less to css compile is fine.
&.aticon-email_app:before { content: “f0e0”; } &.aticon-viber:before { content: “f095”; } &.aticon-plus-square:before { content: “f0fe”; }
I’ve never had such problems with AddThis normal social buttons. Also see image below on Reading Mode page. What do you think has caused this?
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
October 30, 2015 at 2:04 pm #753360I have added these below but no font awesome images show except Viber (phone) which opens an email popup. I have no css edits except in custom.css so less to css compile is fine.
&.aticon-email_app:before { content: “f0e0”; } &.aticon-viber:before { content: “f095”; } &.aticon-plus-square:before { content: “f0fe”; }
I’ve never had such problems with AddThis normal social buttons. Also see image below on Reading Mode page. What do you think has caused this?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
November 2, 2015 at 1:56 am #720897Where did you add content value for email / viber icons? as I don’t see it on your site now. If you add via less file as I mentioned above, try to turn ON the Developement Mode and see how it goes.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
November 2, 2015 at 1:56 am #753437Where did you add content value for email / viber icons? as I don’t see it on your site now. If you add via less file as I mentioned above, try to turn ON the Developement Mode and see how it goes.
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
November 2, 2015 at 12:23 pm #721096Dev mode is ON.
Editing file “/less/style.less” in template “ja_magz_ii”.
Line 927&.aticon-email_app:before {
content: “f0e0”;
}
&.aticon-viber:before {
content: “f095”;
}
&.aticon-plus-square:before {
content: “f0fe”;
}timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
November 2, 2015 at 12:23 pm #753498Dev mode is ON.
Editing file “/less/style.less” in template “ja_magz_ii”.
Line 927&.aticon-email_app:before {
content: “f0e0”;
}
&.aticon-viber:before {
content: “f095”;
}
&.aticon-plus-square:before {
content: “f0fe”;
} -
AuthorPosts
This topic contains 29 replies, has 2 voices, and was last updated by Saguaros 9 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum