Filipr
Forum Replies Created
-
I had the same warning on PHP 8.2. I guess line 326 is telling the truth (“this is a real monkey patching”) 🙂
I added some additional checks to line 327, seems to work for me though I didn’t test extensively yet:
$message_list = ( is_array( $additional_settings ) && isset( $additional_settings['message'] ) ) ? sanitize_text_field( implode( ' ', explode( '] [', $additional_settings['message'] ) ) ) : '';I also had an issue with the layout, but I solved it by purging the page cache of W3 Total Cache.
Forum: Plugins
In reply to: [Theme My Login] Redirection based on membership levelsNot sure about that as it is TML that needs to be adapted 😉
Anyway I gave it a shot myself and it wasn’t that difficult, basically getting the membership level from the DB and using that instead of user role.
Forum: Fixing WordPress
In reply to: class-phpmailer.php php time out at line 879 (pcre8)I have the same issue, according to http://blog.bibra-online.de/2014/09/01/phpmailer-and-php-5-2-x-incompatibility/ it might be because of the php version… I’m gonna upgrade to see if it solves the issue.
Forum: Themes and Templates
In reply to: [GovPress] Parent page sidebar on left not rightYou mean it jumps to the left, I think. I don’t want that either, I just wanted the default template on all pages and not the list of child pages.
What worked for me: comment out or delete this section in style.css:
/* =Layouts ----------------------------------------------- */ .layout-sidebar-left .site-main { margin: 0 0 0 30%; } .layout-sidebar-left #secondary { float: left; } .layout-sidebar-left .content-area { float: right; margin: 0 0 0 -25%; }