WC_Settings_Tracking::track_settings_page_view()

Send a Tracks event for WooCommerce settings page views.


Description Description


Source Source

File: includes/tracks/events/class-wc-settings-tracking.php

	public function track_settings_page_view() {
		global $current_tab, $current_section;

		$properties = array(
			'tab'     => $current_tab,
			'section' => empty( $current_section ) ? null : $current_section,
		);

		WC_Tracks::record_event( 'settings_view', $properties );
	}


Top ↑

User Contributed Notes User Contributed Notes

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