Last active
July 20, 2022 11:17
-
-
Save pramodjodhani/4cd54d513438f984d08aff90802bec30 to your computer and use it in GitHub Desktop.
Orderable DIsable the Getting started tab.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Orderable DIsable the Getting started tab. | |
| * | |
| * @param array $settings Settings array. | |
| * | |
| * @return array | |
| */ | |
| function orderable_disable_getting_started_tab( $settings ) { | |
| unset( $settings['tabs'][0] ); | |
| return $settings; | |
| } | |
| add_filter( 'wpsf_register_settings_orderable', 'orderable_disable_getting_started_tab', 201 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment