Topic-icon How i can hide this thing?

Active Subscriptions:

None
11 years 11 months ago #44853 by alechu


How i can hide this thing?
The topic has been locked.
Support Specialist
11 years 11 months ago #44860 by alzander
Replied by alzander on topic How i can hide this thing?
The social toolbar only shows to Super Admins that are logged in, and not any other users. In the 6.1 release, there will be an option to completely hide the bar.

Until the 6.1 release, to completely disable, please edit the /components/com_jfbconnect/libraries/toolbar.php file.
Around line 17, you'll see:
public function onAfterDispatch() 
    { 
        if (JFactory::getUser()->authorise('jfbconnect.channels.post', 'com_jfbconnect')) 
        {
Update that by changing the if statement to 'false' like below:
    public function onAfterDispatch() 
    { 
        if (false) 
        {
Do the same for the onAfterReturn function at line 44.

I hope that helps, but if you have any other questions, just let me know.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
11 years 11 months ago #44866 by alechu
Replied by alechu on topic How i can hide this thing?

alzander wrote: The social toolbar only shows to Super Admins that are logged in, and not any other users. In the 6.1 release, there will be an option to completely hide the bar.

Until the 6.1 release, to completely disable, please edit the /components/com_jfbconnect/libraries/toolbar.php file.
Around line 17, you'll see:

public function onAfterDispatch() 
    { 
        if (JFactory::getUser()->authorise('jfbconnect.channels.post', 'com_jfbconnect')) 
        {
Update that by changing the if statement to 'false' like below:
    public function onAfterDispatch() 
    { 
        if (false) 
        {
Do the same for the onAfterReturn function at line 44.

I hope that helps, but if you have any other questions, just let me know.

Thanks,
Alex

thanks. waiting version 6.1. really don't like go on ftp for every read file.
The topic has been locked.
Support Specialist
11 years 11 months ago #44874 by alzander
Replied by alzander on topic How i can hide this thing?
We don't like users editing files either, which is why we'll have an option to disable completely in the next release. If you have any other questions before then, just let me know.

Thanks,
Alex
The topic has been locked.