Created
September 25, 2021 10:59
-
-
Save MrVibe/f2d8d3f90b25b63000547a32e886bf40 to your computer and use it in GitHub Desktop.
Elementor Pro in Course header fix for WPLMS. Available in WPLMS 4.1 , paste code on child theme - functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('init',function(){ | |
if(class_exists('ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager')){ | |
$init = new ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager(); | |
add_action( 'template_redirect', [ $init, 'register_locations' ] ,1); | |
} | |
},1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment