wpdv
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Combines with another plugin?Great. Thank you!
Forum: Plugins
In reply to: [Autoptimize] Combines with another plugin?Dear Frank,
Are there any other settings (here) that you would recommend be activated on WP Fastest Cache to remain compatible with your plugin? Thanks!
-PatrickForum: Plugins
In reply to: [10WebFAQ] FAQ's Won't OpenThank you very much sir! Adding faq-wd/js fixed it. Have a wonderful day!
-PatrickForum: Plugins
In reply to: [10WebFAQ] FAQ's Won't OpenThank you Frank!! That allowed the page to work correctly. Not sure of the next step. https://go2l.ink/13Gt
Thank you for the plugin. It’s very useful. Please add the visual file permissions back (with the green, yellow and red). It was very helpful when having to temporarily reduce the level of protection to write to certain files and then quickly re-enable.
iThemes, Please add the visual WordPress File Permissions view back. This was a very helpful feature.
Works fine for me in this version Version 44.0.2403.107 (64-bit) for Mac
Thank you for your help David. Have a wonderful day!
Hi David, This is the message “Warning: Illegal string offset ‘new_version’ in /home/folder-name/public_html/website.com/wp-content/themes/genesis/lib/functions/upgrade.php on line 126′
Good morning David! My site has returned to normal (after about five minutes), so I am all good there. I will try and install Updraft again and will post errors if they appear again. I did see the same errors (this morning) on another website I updated, but the website was not broken after.
Forum: Fixing WordPress
In reply to: WordPress comment php error since upgrade to 3.9Same here … error msg … wp-includes/pluggable.php on line 1121
Thank you ls5302, your code works perfectly!!
I just removed the original extra line of code I left in there and everything is still working. Thank you very, very much for all of your help!
I left the aforementioned original line of code intact and now everything appears to be working exactly as it should. Thank you very much for your suggestion!
This first line of code was already existing within the class-itsec-ssl file
$require_ssl = get_post_meta( $post->ID, 'itsec_enable_ssl', true );
… I see you have added it to the bottom of your suggested code. Should this first instance be deleted or kept? Thanks!$require_ssl = get_post_meta( $post->ID, 'itsec_enable_ssl', true ); $bwps_ssl = get_post_meta( $post->ID, 'bwps_enable_ssl', true ); if ( $bwps_ssl == true ) { delete_post_meta( $post->ID, 'bwps_enable_ssl' ); update_post_meta( $post->ID, 'itsec_enable_ssl', true ); } elseif ( '' != $bwps_ssl && $bwps_ssl == false ) { delete_post_meta( $post->ID, 'bwps_enable_ssl' ); update_post_meta( $post->ID, 'itsec_enable_ssl', false ); } $require_ssl = get_post_meta( $post->ID, 'itsec_enable_ssl', true );