Close

How to hide the change password link on the my account page?

UserThomas
9 years ago
#6289 Quote
Avatar
  • 90
I can't seem to figure this one out.  I would like to hide the "Change Password" link on the customers "my account" page.  I only want it to affect one store, the store with the Allure theme on it.  I have checked the nop forums and asked but didn't get any feedback.   Is this something you can help me with? Thanks!
nikola.dragiev
9 years ago
#6296 Quote
Avatar
  • Moderator
  • 154
Hello,

To apply this change only on the Nop Allure Theme you have to go to your nopCommerce Administration => Plugins => Nop Allure Theme => Settings, there you will find a Custom Head Styles text field where, you have to paste this code:

.side-2 .block .list > li:last-child{
  display: none;
}
.side-2 .block .list > li:nth-child(6) a{
  border-bottom: none;
}


Now these css changes will be applied only for the Nop Allure Theme

Hope I've been useful,

Nikola Dragiev

NopTemplatesTeam
Best regards,
Nikola Dragiev
Nop-Templates.com
UserThomas
9 years ago
#6297 Quote
Avatar
  • 90
Thanks. I will add that.