How can I make it easy for users to login/logout/register to my site?
I consider login/logout/register the most important function, so did I miss something obvious?
-
This topic was modified 10 years by
GideonLupine.
Hi
The theme’s Log in/Sign In widget it’s placed in top menu: http://screencast.com/t/8Uc6HwUuv2q0 but you have to activate the registration from WordPress > Settings: http://screencast.com/t/v0NkXQrk also make sure you have it enable in theme panel >header: http://screencast.com/t/Fp3uawpJPiSh
Hope this help, but in case this is not what you men please provide more details.
Thanks!
The problem is that 68% of my visitors are coming in on a mobile phones and most of that traffic is iPhones.
That is about 1 in 3 can login/logout/register easily. It may as well not even exist at that point.
If the theme can’t do it, I am willing to buy a plugin that will. I just want to know it will work before I spend the cash. The refund game is a pain in the ass.
Hi
By default the theme hides the top bar, which includes the registration widget, on mobile devices but you can use custom css to display it, so there is no need to pay for a plugin. You can use this custom css in theme panel > custom css section:
@media (max-width: 767px){
.td-header-top-menu {
display: block!important;
}
}
@media (max-width: 767px){
.td-header-sp-top-menu{
left: 15px!important;}
}
@media (max-width: 767px){
.td-header-sp-top-menu .td_data_time{
display: none;
}
}
You can modify the values as you like. The result should be like here: http://screencast.com/t/C3W4NdBXh
Thanks!
-
This reply was modified 10 years by
Andrei L..
That is good because I want to show the social links and login on the top always.
Is there any way to add captcha to the newsmag login?
I think it should be default on for the theme because look how fast the mobile industry is moving to web. Smart phones are getting to be the most popular thing now. So I would happy if this was a default feature in the theme. I added that to my CSS too in theme panel.
Hi
@GideonLupine please check this topic: https://forum.tagdiv.com/topic/registrationlogin-modal-captcha/ Lucian posted a solution there.
@doucare1971 this is on our feature request list, but we must find the right design for each header style. Implementing this feature may take some time because it requires testing across browsers, operating systems and mobile devices. We have this in our consideration for future theme updates.
Thanks!
-
This reply was modified 10 years by
Andrei L..
I was wondering how to remove the social icons from the top in this code. What needs to change in code to remove the social icons on mobile?
Ha, I figured it out. Did not need to change the code you provided with. I just went into the theme panel and just disabled the social icons from the top bar and they were gone on both desktop and mobile. I have the social icons showing in footer. That is solved.