trepidation.co.uk
Forum Replies Created
-
@yorksett you’ll need this line in your wordpress root wp-config.php file
define( 'WP_DEBUG', true );
and hopefully it’ll show you the line in that(or other file) which is causing the error.Another solution is to wait for the next woocommerce update where hopefully they’ll fix it for everyone.
Otherwise all I’ve done is create a ternary i.e so the code has something to fall back on if it doesn’t have a value
Sorry just re-read my response. This is the code to replace the above code with:
date_registered' => $customer->get_date_created( 'edit' ) ? $customer->get_date_created( 'edit' )->date( TimeInterval::$sql_datetime_format ) : null,according to my debug report the error is on line 738
in this file
/wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/DataStore.php on line 738I have replaced this line
'date_registered' => $customer->get_date_created( 'edit' )->date( TimeInterval::$sql_datetime_format ),with
$customer->get_date_created( 'edit' ) ? $customer->get_date_created( 'edit' )->date( TimeInterval::$sql_datetime_format ) : null,and it now appears to work
Forum: Plugins
In reply to: [Contact Form 7] Form not working after 4.4.1 wordpress updateAre you just cut an pasting the code into: /wp-includes/class-phpmailer.php
alternatively you can download wordpress 4.4.0 from archives and, upload (I would back up the original file though, as you might want to revert back when ‘contact form 7’ come up with an update)
Forum: Plugins
In reply to: [Contact Form 7] Form not working after 4.4.1 wordpress updateI have multisite so it was relatively easy to implement, and it is only a temporary solution I’m hoping the plugin developer will be able to put together a plugin update – and maybe I’ve helped them identify the issue.
Forum: Plugins
In reply to: [Contact Form 7] Form not working after 4.4.1 wordpress updateOkay found a temporary solution:
replace the content of
/wp-includes/class-phpmailer.php
with the below (it’s from version 4.4.0)[Large code excerpt removed by moderator per forum rules. Please use Pastebin for all large code excerpts. It works better anyway. Code also incomplete.]
Forum: Plugins
In reply to: [Contact Form 7] Form not working after 4.4.1 wordpress updateTried replacing
/wp-admin/js/postbox.js
/wp-admin/js/common.js with wordpress 4.4.0 but no joyanyone have any ideas
Forum: Plugins
In reply to: [Contact Form 7] Form not working after 4.4.1 wordpress updateThe default message that comes up is:
Sender’s message was failed to sendForum: Plugins
In reply to: [Contact Form 7] Form not working after 4.4.1 wordpress updateThe same issue after upgrade to version 4.4.1 we have lots of contact form installations across wordpress multisites, and all aren’t working it does look like a compatibility issue with wordpress 4.4.1
Forum: Themes and Templates
In reply to: Custom CSS Fix?You’ve also got the IE6 resize bug which effects your menu when you resize the window in IE. See the link below to resolve, but not sure if it’s related to your other problem…..
Forum: Fixing WordPress
In reply to: Can anybody help me plz?I think google have a privacy setting on the image you are using
Forum: Fixing WordPress
In reply to: Plug in update Social PluginI use the ‘social ring’ plugin and that worked pretty well.
however you stated you can’t get on your website, so I’d go to you ftp protocol, and delete the social plugin you added which should be in your yourwebsite.com/wordpress/wp-content/plugins file. and hopefully that will let you in your website again