Kyle
Forum Replies Created
-
Yes, I used WP Rocket, but even when I de-activated WP Rocket, I still had the same problem. Have you done tests with WP Rocket activated? As well, it is installed on a Cloudways site. Do you know if this has been reported on any other Cloudways installs?
Thanks,
Kyle
Thanks @pronl. Is there some iThemes Security staff that will update this in the next release?
Forum: Hacks
In reply to: WooCommerce: Add Payment Gateway Field to WebhooksThanks, will do next time. I figured this one out:
function my_custom_wc_api_order_response( $order_data, $order, $fields ) { $customer_info = get_post_meta( $order->id, '_customer_info', true ); $order_data['payment_details']['customer_info'] = $customer_info; // Apply filters if necessary if ( $fields ) { $order_data = WC()->api->WC_API_Customers->filter_response_fields( $order_data, $order, $fields ); } return $order_data; } add_filter( 'woocommerce_api_order_response', 'my_custom_wc_api_order_response', 10, 3 );Forum: Plugins
In reply to: [Growmap Anti Spambot Plugin] Can't post comments on blogI am having the same problem. Everything is all the way updated. I basically went through all the steps above.
Near the bottom of my comments.php there is a script:
comment_form('comment_form',$post->ID);
I’m not sure if that is relevant or helpful.Any suggestions?