Admin_UI::list_table_admin_notices()

Summary

Show applicable admin notices at the top of the products list table


Return

(void)


Source

File: src/BigCommerce/Post_Types/Product/Admin_UI.php

	public function list_table_admin_notices() {
		$screen = get_current_screen();
		if ( $screen && $screen->base === 'edit' && $screen->post_type === Product::NAME ) {
			settings_errors();
		}
	}

User Contributed Notes

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