63N
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] OpenSSL errorUnfortunately (for me) the site’s already on PHP 5.5. I’ve changed to 5.6 to see if that makes a difference, but so far I’m still seeing the warning.
I’m not sure if the it takes a bit of time for the change to be applied, so will test it again later to double check. I might try PHP 7 to see if that makes a difference, but I’m not holding my breath.
The hosting provider (1and1) were useless when I emailed them and gave me no helpful information at all. Surprise surprise. The ‘support’ guy I spoke to on the phone tried to sell me an SSL certificate, but I don’t think he knew what I was talking about.
Any other suggestions welcomed… anyone??
Forum: Plugins
In reply to: [WooCommerce Piwik integration] Error on product pageYea, the error seems to be gone. Thanks!
Awesome, that seems to be working perfectly, and it overrides the default.
Thanks!
I don’t know php, but after looking at other posts, your files on gist and searching through the source code for a filter I put this together:
// send new registration notifications to additional email addresses function additional_registration_notifications( $to ) { $to = 'CUSTOM EMAIL ADDRESSES'; return $to; } // add new email address to the notification list add_filter( 'new_user_approve_email_admins', 'additional_registration_notifications' );
But I get an error when I use this?
EDIT: the error after the registration form is submitted – Warning: array_unique() [function.array-unique]: The argument should be an array in…
Forum: Plugins
In reply to: WooCommerce total cart volume (dimensions)