wc_terms_and_conditions_checkbox_enabled()
See if the checkbox is enabled or not based on the existence of the terms page and checkbox text.
No Hooks.
Returns
true|false.
Usage
wc_terms_and_conditions_checkbox_enabled();
Changelog
| Since 3.4.0 | Introduced. |
wc_terms_and_conditions_checkbox_enabled() wc terms and conditions checkbox enabled code WC 10.8.1
function wc_terms_and_conditions_checkbox_enabled() {
$page_id = wc_terms_and_conditions_page_id();
$page = $page_id ? get_post( $page_id ) : false;
return $page && wc_get_terms_and_conditions_checkbox_text();
}