truonglv Well-known member Oct 3, 2014 #1 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}">
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}">
Mike XenForo developer Staff member Oct 3, 2014 #2 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.
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.