XF 2.0 Register page

Sunka

Well-known member
If user click on register button, it would open popup form for registering.
How to disable that, and open complete register web page.

Thanks
 
@Fastline
In Page_container template, find part

Code:
xf:if is="$xf.options.registrationSetup.enabled">
                            <a href="{{ link('register') }}" class="p-navgroup-link p-navgroup-link--textual p-navgroup-link--register" rel="nofollow"
                                data-xf-click="overlay" data-follow-redirects="on">
                                 <span class="p-navgroup-linkText">{{ phrase('register') }}</span>
                            </a>

And delete data-xf-click="overlay" data-follow-redirects="on">
 
@Fastline
In Page_container template, find part

Code:
xf:if is="$xf.options.registrationSetup.enabled">
                            <a href="{{ link('register') }}" class="p-navgroup-link p-navgroup-link--textual p-navgroup-link--register" rel="nofollow"
                                data-xf-click="overlay" data-follow-redirects="on">
                                 <span class="p-navgroup-linkText">{{ phrase('register') }}</span>
                            </a>

And delete data-xf-click="overlay" data-follow-redirects="on">
Thanks. Will check and revert back. And can you tell me which Theme do you use?
 
Last edited:
Thanks. Will check and revert back. And can you tell me which Theme do you use?
@Sunka
It works. Thanks a ton!
:)
Also how did you implemented Adsense in HTTPS?

I'm trying from last couple of days, but no ads. However the same ads shows on another website which is not having any HTTPS support.

Also how did you use latest post?
 
And can you tell me which Theme do you use?
Basic theme but with colours of my choice and little css/less tweaks

Also how did you implemented Adsense in HTTPS?

I'm trying from last couple of days, but no ads. However the same ads shows on another website which is not having any HTTPS support.
I am using @Siropu addon for ads. Here is a link fot that addon.
Siropu is one of the best developers for xenforo (beside @Xon, @Bob and few another).
But ads will work from default in https and http.
They should!

Also how did you use latest post?
If you think for ads, it just part of @Siropu addon I mention it above
 
Basic theme but with colours of my choice and little css/less tweaks


I am using @Siropu addon for ads. Here is a link fot that addon.
Siropu is one of the best developers for xenforo (beside @Xon, @Bob and few another).
But ads will work from default in https and http.
They should!


If you think for ads, it just part of @Siropu addon I mention it above
Thank you!
I was thinking to download the same. Let's see how it goes
Thanks once again
 
Back
Top Bottom