Hello, sorry about that, it is fixed in the next release that will be released very soon π
Hi again i’ve updated theme and it still not working :/
Hi, go to Theme Panel > Scripts & Styles, click Save Changes, clear your cache. It will work π
You have updated Ocean Extra, right? Because I tried, it works.
I have 2 websites with same problem :/
It working now had to activate js account links
Thanks π
Oh, sorry, I taught it was enabled by default.
Is there a way to disable this new way to display login/register forms? I prefered the old way with both forms available (one on the left and ther other on the right) and without “Login or Register” links. This is not very usable… is confusing.
Hello, use this css codes:
.woocommerce .owp-account-links {
display: none;
}
.woocommerce #customer_login>div {
float: left;
width: 48%;
}
.woocommerce #customer_login .col-2 {
display: block;
float: right;
}
@media only screen and (max-width: 959px) {
.woocommerce #customer_login>div,
.woocommerce #customer_login .col-2 {
float: none;
width: 100%;
}
.woocommerce #customer_login .col-2 {
margin-top: 20px;
}
}
In my case, I prefer the old way because the main goal on page where I’m displaying this forms, is client registering. And with the new method, user needs to click on “register” link. π