How To Display a Terms & Conditions Checkbox?

How To Display a Terms & Conditions Checkbox?

Want to force your buyers to accept your terms and conditions? Adding a checkbox is super easy to do.

Since CartFlows uses WooCommerce for the checkout portion of your funnels, adding a terms and conditions checkout to WooCommerce is super easy.

First thing you will need to do is create a new page on your website that will have your terms and conditions on it.

Next we need to tell WooCommerce which page on your website has the terms and conditions.

Now there will be a checkbox automatically added to your checkout and there will be a link to the page you selected.

Filter to Change Cron Trigger Time

Filter to Change Cron Trigger Time

Did you ever have a requirement to change the Cron Trigger Time? You can change the cron trigger time by using the following filter –

// This Filter will change Cron Trigger Time ( Default 15 Min. )
add_filter( 'woo_ca_update_order_cron_interval', 'update_cron_trigger_time', 10 );
function update_cron_trigger_time($time_in_minutes){
$time_in_minutes = 30;
return $time_in_minutes;
}