- Posts: 13
- Thank you received: 1
Kunena 6.1.1 Released
The Kunena team has announce the arrival of Kunena 6.1.1 [K 6.1.1] which is now available for download as a native Joomla extension for J! 4.2.x/4.3.x. This version addresses most of the issues that were discovered in K 6.1.0 and issues discovered during the last development stages of K 6.1
Question How to remove buttons from social networks?
Please Log in or Create an account to join the conversation.
If you want disable only single buttons, you can hide it via css.
Add the following codes such as (example google+ and facebook) in your custom.less
Please Log in or Create an account to join the conversation.
rich wrote: If you want disable only single buttons, you can hide it via css.
Add the following codes such as (example google+ and facebook) in your custom.less
Code:.jssocials-share.jssocials-share-googleplus, .jssocials-share.jssocials-share-facebook { display: none; }
Worked like a charm but i've updated to Kunena 5.1.3 and buttons came back. Any help appreciated.
Please Log in or Create an account to join the conversation.
Go in backend to Kunena -> Templates and mark Crypsis. Then edit the crypsis.less. Add following line (red marked) and save the change.
#kunena.layout {
@import 'variables.less';
@import 'quirks.less';
@import 'general.less';
@import 'editor.less';
@import 'icons.less';
@import 'user.less';
@import 'profile.less';
@import 'categories.less';
@import 'mediaqueries.less';
@import 'twitter.less';
@import 'custom.less';
/* @import 'debug'; */
}
Please Log in or Create an account to join the conversation.