Open popup automatically when navigate to the page id

What you can do is on document ready you can check your url and based on if #contact is there on not, show popup. Something like: jQuery(document).ready(function () { var type = window.location.hash.substr(1); if(type == ‘contact’){ //show popup } } Note: Check for syntax. Code not tested or tried.

how add class in containers

I don’t understand using rigid widgets having the ability to edit the theme. So, I call attention to the wp_nav_menu() for flexibility improvement. functions.php: <?php // register menu in `side_menu` register_nav_menu( ‘side_menu’, __( ‘Sidebar’, ‘theme-slug’ ) ); Now you can build your own menu under Appearance -> Menus. Use wp_nav_menu() function to display your menu … Read more

An extra is appearing in my source code–how do I diagnose the source?

I’ve used these in a template to remove all p tags from an editor: remove_filter(‘acf_the_content’, ‘wpautop’); // This is where the content of the editor was written out by the template add_filter(‘acf_the_content’, ‘wpautop’); //add back the filter //so it doesn’t mess with other stuff Also you could try deleting the line break between the images. … Read more