I need to show a change language menu item after my WordPress site is fully loaded. I edited the menu item css
into my menu item:
.my-menu-item {
visibility: hidden;
}
and in my functions.php file i added as follows:
add_action( 'wp_loaded', 'menushow', 99 );
function menushow() { ?>
<script type='text/javascript'>
/* <![CDATA[ */
jQuery(window).load(function() {
// When the page has loaded
jQuery(".my-menu-item").css("visibility", "true");
});
/* ]]> */
</script>
<?php }
but the problem it’s not working. Please help me out here…
As stated before you can use
.show();
, but as far as I know you have to give it the default valuedisplay: none;
to work.The Style
visibility: true;
does not exist, tryvisibility: visible;
More information here!use
.show()
Use this:
instead of
If it doesn’t work, try to make a separate script file, put your code into it and attach that script file to your theme.