- Posts: 13
- Thank you received: 1
Kunena 7.0.7 Released
The Kunena team has announce the arrival of Kunena 7.0.7 [K 7.0.7] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question How to remove buttons from social networks?
Please Log in or Create an account to join the conversation.
- Posts: 12287
- Thank you received: 2536
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
Important! Always create a backup before you make any changes to your website!
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.
- Posts: 12287
- Thank you received: 2536
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'; */
}
Important! Always create a backup before you make any changes to your website!
Please Log in or Create an account to join the conversation.