Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created September 25, 2021 10:59
Show Gist options
  • Save MrVibe/f2d8d3f90b25b63000547a32e886bf40 to your computer and use it in GitHub Desktop.
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
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