lizidaley
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Stuck on one moment pleaseHi,
Im not sure what you mean by reproduce?
The version is 13.0Thanks
Forum: Plugins
In reply to: [Business Worldpay Gateway for Woocommerce] Payment order confirmationHi, thanks for that, some of the orders are coming through as ‘pending payment’ even though the payment has been received through worldpay?
Thanks
Hi, I am having the same issue – the website is live and no plugins are blocking the urls.
Do you have a list of plugins that block this? or why is it happening?Thanks
LiziForum: Plugins
In reply to: [Business Worldpay Gateway for Woocommerce] Payment order confirmationGreat thanks – do you know why when its in woo commerce that it keeps saying processing on the orders even know the payment has been received?
Thanks
Forum: Plugins
In reply to: [WooCommerce] Custom field in checkoutThis is the code I am using:
/** * Add the field to the checkout */ add_action( 'woocommerce_after_order_notes', 'my_custom_checkout_field' ); function my_custom_checkout_field( $checkout ) { echo '<div id="personalisecookie"><h2>' . __('Personalise your cookie') . '</h2>'; woocommerce_form_field( 'my_field_name', array( 'type' => 'text', 'class' => array('my-field-class form-row-wide'), 'label' => __('Our cookies can be personalised *up to 25 characters.'), 'placeholder' => __('Enter your details here'), ), $checkout->get_value( 'personalisation' )); echo '</div>'; } /** * Update the order meta with field value */ add_action( 'woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta' ); function my_custom_checkout_field_update_order_meta( $order_id ) { if ( ! empty( $_POST['personalisation'] ) ) { update_post_meta( $order_id, 'personalisation', sanitize_text_field( $_POST['personalisation'] ) ); } } /** * Display field value on the order edit page */ add_action( 'woocommerce_admin_order_data_after_billing_address', 'my_custom_checkout_field_display_admin_order_meta', 10, 1 ); function my_custom_checkout_field_display_admin_order_meta($order){ echo '<p><strong>'.__('personalisation').':</strong> ' . get_post_meta( $order->id, 'personalisation', true ) . '</p>'; }
[Moderator Note: Please post code between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]
Forum: Plugins
In reply to: [Competition Form] Duplicate entriesOk and if I was to change this while the competition is running will it effect anything?
Forum: Plugins
In reply to: [Competition Form] Duplicate entriesHi,
Thanks for getting back so quickly.
The field iss called your-emailThanks