Hi Dolphiers.
It may be a silly question, but how to disable BoonEx Facebook Connection?
I can just uninstall the module for sure. But I thought there was some option for allow/disallow user to connect via facebook on Advanced Settings.
Hi Dolphiers. |
I know of no such option unless it was put in by another facebook module you have. Just uninstall the boonex facebook module. https://www.deanbassett.com |
Why would you rather there be an enable/disable option when uninstalling the module has the same effect? BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
I know of no such option unless it was put in by another facebook module you have. Just uninstall the boonex facebook module. Thank you Deano. |
Why would you rather there be an enable/disable option when uninstalling the module has the same effect? I have other module integrated with it. |
I found a way to resolve it. It works for me.
open inc\design.inc.php
Look for the following at about line 477
'inputs' => array( $aAuthTypes, 'nickname' => array( 'type' => 'text', 'name' => 'ID', 'caption' => _t('_NickName'), ),
Comment out $aAuthTypes,. Make it look like this. This mod removes the auth type drop down list. This is optional.
'inputs' => array( //$aAuthTypes, 'nickname' => array( 'type' => 'text', 'name' => 'ID', 'caption' => _t('_NickName'), ), |