Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pramodjodhani/4cd54d513438f984d08aff90802bec30 to your computer and use it in GitHub Desktop.
Save pramodjodhani/4cd54d513438f984d08aff90802bec30 to your computer and use it in GitHub Desktop.
Orderable DIsable the Getting started tab.
<?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