RalfEiberger
Forum Replies Created
-
Sorry, i’ve forgotten to give feedback.
I’ve disabled a Caching-Plugin (WP-Supercache) and after that the contact form works as expected. I got on the track with your reference to “page caching”
Ralf
Hi Nastia,
thanks for your reply and your time to check this. I got your test-submitts as expected. We tried different browsers on different (Windows 10-) machines and got no response, no email if clicking the button. Even with deleted Cache.
I’ve restartet the Server to be sure not to have a problem on this end. Nothing…
Any more ideas ?
Ralf- This reply was modified 6 years, 4 months ago by RalfEiberger.
Forum: Plugins
In reply to: [AdRotate Banner Manager] Updating End-Date results in “No Permission”Hi,
i changed the permissions in Settings > Roles
Manage/Add/Edit adverts
to Autor, saved them, changed to Administrator, saved them. Same result.http Error 403
Forbidden
You do not have permission to access this document.Any other idea?
Ralfoh yes Collins. Your Code works as expected when i removed the fullstop….
Thanks for helping.Ralf
which file is that ?
wp-Content/themes/my-theme/style.css ?I’ve added it with a . at the beginning of the block and without a . I’ve tried with 100px, 250px and 100% . Changes Nothing. Maybe i am in the wrong file ?
.input#s2email {
width: 250px;
}Forum: Plugins
In reply to: [Theme My Login] Crashes my siteHave a look at
https://wordpress.org/support/topic/update-from-today-crashed-my-site/There is described how to fix this issue.
I copied it hereTO FIX THIS IS EASY:
This is a typo in class-theme-my-login.php file the variable should be $query not $wp_query….
open file: theme-my-login/includes/class-theme-my-login.php
go to line 264…edit:
// Bail if not the main query
if ( ! $wp_query->is_main_query() )
return;change to:
// Bail if not the main query
if ( ! $query->is_main_query() )
return;Ralf
Forum: Plugins
In reply to: [Theme My Login] Problem after update to 6.4.8Have a look at
https://wordpress.org/support/topic/update-from-today-crashed-my-site/There is described how to fix this issue.
I copied it hereTO FIX THIS IS EASY:
This is a typo in class-theme-my-login.php file the variable should be $query not $wp_query….
open file: theme-my-login/includes/class-theme-my-login.php
go to line 264…edit:
// Bail if not the main query
if ( ! $wp_query->is_main_query() )
return;change to:
// Bail if not the main query
if ( ! $query->is_main_query() )
return;Ralf
Forum: Plugins
In reply to: [Theme My Login] 6.4.8 Update Caused a 500 Server ErrorHave a look at
https://wordpress.org/support/topic/update-from-today-crashed-my-site/There is described how to fix this issue.
I copied it hereTO FIX THIS IS EASY:
This is a typo in class-theme-my-login.php file the variable should be $query not $wp_query….
open file: theme-my-login/includes/class-theme-my-login.php
go to line 264…edit:
// Bail if not the main query
if ( ! $wp_query->is_main_query() )
return;change to:
// Bail if not the main query
if ( ! $query->is_main_query() )
return;Ralf