Ask Your Question
0

How can I enable the checkout option for the WooCommerce Mailpoet opt-in to be set to true, even after refreshing the order review page?

asked 2021-10-31 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-02-09 11:00:00 +0000

lalupa gravatar image

You can achieve this by adding the following code to your theme's functions.php file:

add_filter( 'woocommerce_checkout_fields', 'mailpoet_optin_checked' );

function mailpoet_optin_checked( $fields ) {
   $fields['mailpoet_optin']['default'] = 1;
   return $fields;
}

This code will set the default value for the Mailpoet opt-in checkbox to 1 (checked) on the checkout page, even after refreshing the order review page.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-31 11:00:00 +0000

Seen: 7 times

Last updated: Feb 09 '22