diff --git a/footer.php b/footer.php index da3fcca..8706d15 100644 --- a/footer.php +++ b/footer.php @@ -41,7 +41,7 @@
diff --git a/functions.php b/functions.php index 4a3bb88..366d249 100644 --- a/functions.php +++ b/functions.php @@ -98,7 +98,7 @@ add_action( 'after_setup_theme', 'magaziner_setup' ); /* ------------------------------------ */ add_action( 'wp', function() { require_once 'functions/nav.php'; - $nav = new \AlxMedia\Nav(); + $nav = new \Magaziner\Nav(); $nav->enqueue( [ 'script' => 'js/nav.js', diff --git a/functions/nav.php b/functions/nav.php index cd3c028..6e5bec4 100644 --- a/functions/nav.php +++ b/functions/nav.php @@ -3,7 +3,7 @@ * An accessible and mobile-friendly implementation for navigation menus. */ -namespace AlxMedia; +namespace Magaziner; /** * Object containing all methods and hooks to modify default menus. @@ -46,7 +46,7 @@ class Nav { * * @var string */ - protected $handle_prefix = 'alxmedia-nav'; + protected $handle_prefix = 'magaziner-nav'; /** * Init. @@ -56,7 +56,7 @@ class Nav { * @return void */ public function init() { - if ( apply_filters( 'alxmedia_disable_nav_mods', false ) ) { + if ( apply_filters( 'magaziner_disable_nav_mods', false ) ) { return; } add_filter( 'walker_nav_menu_start_el', [ $this, 'add_nav_sub_menu_buttons' ], 10, 4 ); diff --git a/functions/updater/theme-updater.php b/functions/updater/theme-updater.php index bbce6cf..48d7603 100644 --- a/functions/updater/theme-updater.php +++ b/functions/updater/theme-updater.php @@ -18,7 +18,7 @@ $updater = new EDD_Theme_Updater_Admin( 'remote_api_url' => 'https://alx.media', // Site where EDD is hosted 'item_name' => 'Magaziner', // Name of theme 'theme_slug' => 'magaziner', // Theme slug - 'version' => '3.1.0', // The current version of this theme + 'version' => '3.1.1', // The current version of this theme 'author' => 'AlxMedia', // The author of this theme 'download_id' => '', // Optional, used for generating a license renewal link 'renew_url' => '', // Optional, allows for a custom license renewal link diff --git a/header.php b/header.php index cae93aa..88b04c6 100644 --- a/header.php +++ b/header.php @@ -34,13 +34,13 @@ @@ -86,7 +86,7 @@