dmgcom
Forum Replies Created
-
Forum: Hacks
In reply to: Custom "remember me" box css not showing in Firefox.Additional info: I ran the page through CSS validator and got a few errors. This was one: “Sorry, the at-rule ‘@-moz-document’ is not implemented.” From what I understand, that affects how Firefox displays CSS. Is that correct? How can I fix it?
Thank you in advance.
Forum: Fixing WordPress
In reply to: How can I disable wp-login.php logo link?EDIT: I should add that I’m running multisite. I only need this to affect the login page of one subdomain.
Forum: Fixing WordPress
In reply to: How to remove links in wp-login.phpThat might be an option. Security is a big part of why I’m trying to accomplish this. Another is that I’m serving copyrighted content back to it’s copyright holders, who understand the internet pretty well. So I’m not only trying to secure it for my own protection, but also make sure it also “feels” secure to anyone who might want to look behind the pages to see how their content it being protected. Making everything clean and appear proprietary, without extraneous code or obvious cms footprints can go a long way toward that.
Also, I should add (to complicate things even more) – I’m running multisite with subdomains, and plan leave the password recovery link on the primary domain. That way, if i do ever lose my password, I can still get into the subdomain via the primary domain as an admin. So I’m only looking for a way to block it for one site. Or even possibly at just the subdomain level.
So it would be:
example.com = password recovery link remains
subdomain.example.com = all login links blocked from visibility and from appearing in the code.Forum: Fixing WordPress
In reply to: How to remove links in wp-login.phpHi kmessinger –
Yes, please feel free to change the title. I really appreciate your trying to help me get it solved.
I considered an option similar to what you’re describing – perhaps using a login widget on the home page that redirects to a protected area after login. My only hesitation was that I wanted the private area to be at the ‘subdomain.example.com’ level rather than the ‘subdomain.example.com/protected’ address. Plus, I wanted to make sure my wp-login horse was sufficiently dead before moving on to beat others. This horse is so close to dead.
EDIT: I forgot to add, I did experiment a little with above approach, but found that the login widget provided by s2member redirects to the wp-login page anyway if you enter a wrong password, so it leaves me with the same problem.
Forum: Fixing WordPress
In reply to: How to remove links in wp-login.phpHi kmessinger –
Unfortunately, that gives me the same results. It’s hidden from visibility, but I’m still seeing the href code.
Forum: Fixing WordPress
In reply to: How to remove links in wp-login.phpI should add – I’ve been banging my head against a wall for a couple of weeks on this. I feel like I’ve done due diligence in trying to conquer it on my own, but nothing I’ve come across works. It’s just beyond my ability to overcome it without help from you guys.
Forum: Fixing WordPress
In reply to: How to remove links in wp-login.phpHi kmessinger –
Thank you for the quick reply.
Setting my site to private isn’t the problem, it’s blocking rather than hiding elements in the wp-login source code. That said, I’ve tried a few membership/private site plugins to accomplish this before getting here, as well as plugins that let you redesign the wp-login page. All the ones that offer options regarding these links appear to be using the nav display:none css you can find in the forums, which only hides the links but still leaves them in the source code.
I don’t have a live site to share at the moment. I’ve been trying to get this fixed before it goes up. But, basically, what’s happening is that I can use php or css to hide the links – they don’t appear on the page itself – but if you look at the page’s source code, you still see them around line 70. So, the tricks I’ve found so far are just telling the browser not to display items that are in its code. I’m trying to block those before they reach the page code.