Jumping menu in Admin bar
-
Hey,
after successful installation of this useful plugin I noticed that position in admin bar (wpadminbar) do something strange – jump up and down on hover.
When I disable Easy Logo plugin everything back to normal.
It seems to some kind of bug in functionelv_easylogo_styles_front_end()
.
When Easy Logo plugin is enabled but “Select Hover Effect” is “None” this:
if( $options != false || $elv_easylogo_hover_effect !='none' )
won’t work correctly. In my case$options
is array so it is NOT false – so this condition give always true!
You can correct this byif( $options != false && $elv_easylogo_hover_effect !='none' )
or even this should be enoughtif( $elv_easylogo_hover_effect !='none' )
.Could You repair it? ??
- The topic ‘Jumping menu in Admin bar’ is closed to new replies.