XF 2.0 Register page

Sunka

Well-known member
Licensed customer
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
 
The Addon works great but the ads do not show in IE. It only shows on Chrome and Safari. I haven't checked in any other browser. Any idea?
Works fine in all browsers.
Look at screenshot below.
Also, you can open my site in IE browser and you will see ads there.

1.webp
 
Also how can i use custom image/icon in navigation menu or it's child?
Something like this add into extra.less
.p-navEl [data-nav-id="forums"]:before{font-family:FontAwesome;content:"\f015";padding-right:5px}

You have in resources here complete tutorial for that
 
Back
Top Bottom