David Siemers
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Redirect logged in users to their primary dashboardHi,
do you have the URLs of all the pages you are talking of?
If yes, you could try to work with a redirection in your .htaccess file like:Redirect 301 https://not-allowed-domain/wp-admin/index.php https://allowed-domain/wp-admin/index.php
Maybe something like this works?
David
Forum: Fixing WordPress
In reply to: 404 page on failed loginRemember to edit the status of this to “resolved” ??
- This reply was modified 4 years, 8 months ago by David Siemers.
Forum: Fixing WordPress
In reply to: 404 page on failed loginNo problem!
Forum: Fixing WordPress
In reply to: Pages Are Not Working In DashboardHi,
I had the same problem today and literally tried everything.
Turns out after I updated my server to PHP 7.4 everything works fine again.
You could try this.
David
Forum: Fixing WordPress
In reply to: 404 page on failed loginEdit: This only works if the variables stay the same every time. I’ve tried it several times (different browsers and OS) and they were similar…
Forum: Fixing WordPress
In reply to: 404 page on failed loginThese variables seem to be the same every time. If you don’t know where they come from and don’t find out, you could make a redirection in your .htaccess file like:
Redirect 301 /?page_id=652&result=failed https://www.grandbeginnings.org/wp-admin
Not quite sure if it works but it`s definitely worth a try.
David
- This reply was modified 4 years, 8 months ago by David Siemers.
Hi,
maybe you can fix this with some edits in your .htaccess file.
Like:
Redirect 301 /link?m=1 https://www.your-domain/link
Would that work for you?
David
Forum: Fixing WordPress
In reply to: Change Menu Item to lowercaseHi,
you could style the whole menu lowercase with CSS and write the displayed menu-item-names (viandesign>menu) uppercase (without the x of course). Would that work for you?
David
Forum: Fixing WordPress
In reply to: 404 page on failed loginHi,
what are the variables in the link?
https://www.grandbeginnings.org/?page_id=652&result=failedThese lead to 404 page displayed…
David
Forum: Fixing WordPress
In reply to: Header video wont display on mobilesHi,
I had the same problem with mesmerize theme. Background videos are disabled on small screens by default. I did not find any solution to play the video on mobile devices… I used an image instead. Maybe this could be a workaround for now.
But maybe someone here has a solution??
David
Forum: Themes and Templates
In reply to: [Mesmerize] Conflict with ElementorHi,
does this issue occur on all pages of the website or just on the homepage?
David
Forum: Themes and Templates
In reply to: [Mesmerize] Mobile Menue link not workingHallo,
I`ve tried it several times now and everything is working fine for me. Every side loads.
Did you solve the issue?Forum: Themes and Templates
In reply to: [Mesmerize] Replacing Footer with my OwnHi,
if you just want the copyright to disappear you can to that with CSS like:
.copyright {
visibility: hidden;
}(Don`t know if the class is correct – you may have to search the right one)
In case you want to edit the content of the copyright-boxes you have to edit this file:
{root}>wp-content>themes>mesmerize (or child theme)>template-parts>footer>footer-contact-boxes.php
Does that help?