Responsive Menu Pro – Tips

3d Animation

Here are some tips on using Responsive Menu Pro by ExpressTech in WordPress and how to avoid potential problems.

Responsive Menu Pro Not Displaying in WordPress

In a recent update (Version 3.1.31) Responsive Menu Pro stopped working for me, the menu would no longer display. I contacted the developers and they advised I needed to update my WordPress Template to the latest WordPress Standards introduced in WordPress 5.2.

Add this extra bit of code to the header.php in your theme template folder and all should be back to normal!


<body <?php body_class(); ?>>
<?php wp_body_open(); ?>

For backwards compatibility for older versions of WordPress, you can add the following line of code to your functions.php file.


<?php
if ( ! function_exists( 'wp_body_open' ) ) {
        function wp_body_open() {
                do_action( 'wp_body_open' );
        }
}