| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | |
| 4 | 4 | use Elementor\Core\Experiments\Manager as Experiments_Manager; |
| 5 | 5 | |
| 6 | 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | - exit; // Exit if accessed directly. | |
| 7 | + exit; // Exit if accessed directly | |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | class Module extends \Elementor\Core\Base\Module { |
| 11 | 11 | |
| @@ -19,12 +19,16 @@ | ||
| 19 | 19 | '%1$s <a href="https://go.elementor.com/wp-dash-nested-elements/" target="_blank">%2$s</a>', |
| 20 | 20 | esc_html__( 'Create a rich user experience by layering widgets together inside "Nested" Tabs, etc. When turned on, we’ll automatically enable new nested features. Your old widgets won’t be affected.', 'elementor' ), |
| 21 | 21 | esc_html__( 'Learn more', 'elementor' ) |
| 22 | 22 | ), |
| 23 | - 'release_status' => Experiments_Manager::RELEASE_STATUS_STABLE, | |
| 24 | - 'default' => Experiments_Manager::STATE_ACTIVE, | |
| 23 | + 'release_status' => Experiments_Manager::RELEASE_STATUS_BETA, | |
| 24 | + 'default' => Experiments_Manager::STATE_INACTIVE, | |
| 25 | 25 | 'dependencies' => [ |
| 26 | 26 | 'container', |
| 27 | + ], | |
| 28 | + 'new_site' => [ | |
| 29 | + 'default_active' => false, | |
| 30 | + 'minimum_installation_version' => '3.10.0', | |
| 27 | 31 | ], |
| 28 | 32 | ]; |
| 29 | 33 | } |
| 30 | 34 | |