wc_terms_and_conditions_checkbox_enabled()

See if the checkbox is enabled or not based on the existance of the terms page and checkbox text.


Description Description


Return Return

(bool)


Top ↑

Source Source

File: includes/wc-template-functions.php

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();
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.