reduxframework / redux-framework

Redux is a simple, truly extensible options framework for WordPress themes and plugins!

Home Page:http://redux.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remove menu welcome page

Stargate-project opened this issue · comments

Hello, I am using the latest version 4.3 and wp 6.0.2
after creating my own custom page with a few basic fields I still see the Redux menu link to "Welcome to Redux Framework 4.3"
under the Settings tab, is there a way to hide this menu link?

I have tried Redux::disable_demo(); and 'dev_mode' => false,

but it's still there

There is no way to turn off the Redux menu item, as that's where Redux-specific options are, and the Pro registration interface.

ok but I'm using an embedded version of redux, I dont need any other redux menu items

Redux menu items should only show up if i'm installing redux plugin separately


if ( !class_exists( 'ReduxFramework' ) && file_exists( dirname( __FILE__ ) . '/ReduxFramework/redux-core/framework.php' ) ) {
    require_once( dirname( __FILE__ ) . '/ReduxFramework/redux-core/framework.php' );
}
if ( !isset( $redux_demo ) && file_exists( dirname( __FILE__ ) . '/ReduxFramework/sample/sample-config.php' ) ) {
    require_once( dirname( __FILE__ ) . '/ReduxFramework/sample/sample-config.php' );
}