Not a bug External Account Link doesn't appear

truonglv

Well-known member
Hi. If you have an addon allow connect to external account and you disable all default services. So that link won't appear. Look at this conditions:

PHP:
<xen:if is="{$xenOptions.facebookAppId} OR {$xenOptions.twitterAppKey} OR {$xenOptions.googleClientId}">
 
The add-on should modify the condition as necessary via a template modification.

I would probably match:
Code:
<xen:if is="{$xenOptions.facebookAppId} OR {$xenOptions.twitterAppKey} OR {$xenOptions.googleClientId}
And append to the end. This would allow multiple modifications.
 
Top Bottom