WC_Settings_Payment_Gateways_React::hide_help_tabs()publicWC 1.0

Hide the help tabs.

Method of the class: WC_Settings_Payment_Gateways_React{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Settings_Payment_Gateways_React = new WC_Settings_Payment_Gateways_React();
$WC_Settings_Payment_Gateways_React->hide_help_tabs();

WC_Settings_Payment_Gateways_React::hide_help_tabs() code WC 9.7.1

public function hide_help_tabs() {
	$screen = get_current_screen();

	if ( ! $screen instanceof WP_Screen || 'woocommerce_page_wc-settings' !== $screen->id ) {
		return;
	}

	global $current_tab;
	if ( 'checkout' !== $current_tab ) {
		return;
	}

	$screen->remove_help_tabs();
}