Files
2026-04-23 04:33:43 +03:30

39 lines
1.1 KiB
PHP

<?php
/**
* Register the required plugins for this theme.
*/
function upstudy_register_required_plugins() {
$plugins = array(
array(
'name' => esc_html__('Upstudy Core', 'upstudy'),
'slug' => 'upstudy-core',
'source' => UPSTUDY_DIR . '/admin/tgm/plugins/upstudy-core.zip',
'required' => true,
'version' => '1.3.0',
),
array(
'name' => esc_html__('Elementor','upstudy'),
'slug' => 'elementor',
'required' => true,
),
array(
'name' => esc_html__('One Click Demo Import', 'upstudy'),
'slug' => 'one-click-demo-import',
'required' => false,
),
// Removed Envato Market plugin requirement
);
$config = array(
'id' => 'upstudy',
'default_path' => '',
'menu' => 'tgmpa-install-plugins',
'has_notices' => false, // Changed to false to disable notices
'dismissable' => true,
'dismiss_msg' => '',
'is_automatic' => false,
'message' => '',
);
tgmpa( $plugins, $config );
}