Universe Education Theme Installation and Configuration

 The theme can be purchased on https://themeforest.net/item/universe-education-responsive-wordpress-theme/7145660

That is a great designed theme for College and University website.

Requirements:

As the theme's further development is stopped ! Here is the requirement to configure the last version of the theme.

1) Php up to 7.4

2) WordPress 5.2.21

3) Universe Theme, from Themeforest

With below plugins;

4) Universe Addon, coming with the theme itself

4) Contact Form 7 version 4.5.1

5) MailChimp for WordPress, coming with the theme itself

6) WP News and Scrolling Widgets Pro, from Codecanyon

7) Embed Any Document, By Awsm Innovations

8) Rename wp-admin login, By Nuno Morais Sarmento

9) Maintenance Redirect, By Peter Hardy-vanDoorn


Configure Auto Updates:

1) wp-config.php (at the end of the file)

/* Disable WordPress Update. */
define( 'AUTOMATIC_UPDATER_DISABLED', true );

2) functions.php (theme file, at the end of the file)

// Disable Theme Update
add_filter( 'auto_update_theme', '__return_false' );

// Disable Plugins Update
add_filter( 'auto_update_plugin', '__return_false' );

// Hide dashboard update notifications for all users
function websitebanai_hide_update_nag() {
remove_action( 'admin_notices', 'update_nag', 3 );
}

add_action('admin_menu','websitebanai_hide_update_nag');

// Remove admin dashboard updates submenu
add_action( 'admin_menu', 'control_menu_items_shown' );
function control_menu_items_shown() {
    remove_submenu_page( 'index.php', 'update-core.php' );
}

3)

Post a Comment