Gerroald
Forum Replies Created
-
Hi,
If you somehow get locked out, there’s always a way for you to get back in.
That message needs to be a little more clear. It’s basically stating that you do have a SSL certificate, and you can use the feature.
Please let me know if you have any other questions.
Thanks,
Gerroald
Hey Gabriel,
Thanks for the update. Happy to hear you were able to get it sorted.
Thanks,
Gerroald
Hi,
Is the end of the URL “not_found”?
Can you please share the contents of your .htaccess?
Thanks,
Gerroald
Hi,
Dwinden is completely correct. This feature detours against accessing your log in page via wp-admin. After you’re logged in it’s expected behavior to see wp-admin while in the back end.
Thanks,
Gerroald
Hi,
This is very interesting. I’ve filed a report. I’ll make sure and update you here when I know more.
Thanks,
Gerroald
Hi,
Did you enable any features, particularly Change wp-content directory?
This feature is only meant for new installs. It will break your site as mentioned in it’s warning. If this is the case I’d suggest restoring from a backup, or hiring a trusted developer to update the the media paths.
Thanks,
Gerroald
Hi,
Could you update to the most current version and see if that helps?
Thanks,
Gerroald
Hi,
Could you try disabling the Suspicious Query Strings and Long URLs features and see if that helps?
Thanks,
Gerroald
Hi Christian,
What’s the error message you’re receiving? When does this happen?
Thanks,
Gerroald
Forum: Themes and Templates
In reply to: Navigation prints with page – unwantedPerhaps the cleanest way would be to make a print.css file and use visibility:hidden; to omit the code you don’t need displayed. This option could give you great flexibility. One of the ways to target the style sheet would be like this:
<link rel="alternate stylesheet" href="css/print.css" type="text/css" media="print" />Another alternative could be to add the code below to the bottom of your themes style.css. Add the class of .noPrint to the desired div, or visa versa.
@media print { .noPrint { display:none; } }