Hi there,
I’ve created a new announcement bar today but it’s not displaying well on mobile (see the screenshot below).
I have switched on ‘Set the button’s position relative to the text’, and selected ‘Position: Centre’. According to the back-end preview, it should run the text centred across the full mobile screen width, with the button centred underneath.
However, it’s instead displaying the text and button side by side, in a two-column format.
Any ideas how to fix this?
Thanks,
Koren
Hello Community
I come to you for a small problem.
We are talking about this site: https://www.mybottledesign.com/
As you can see, it is in transparent menu on home page then in white background menu and black font in other pages.
The problem is when I scroll on home page. It keeps the white logo.
I looked in the sticky bar settings but I can’t find anything.
Help please! ??
]]>For some reason the plugin keeps automatically adding “mailto:” in front of whatever URL I enter in the “Redirection link” box. Every time I hit save the mailto: reappears so I’m unable to get rid of it.
]]>Hi All,
I’m facing an issue related to sticky header I hope that sone one can help me with this issue, I’m using “my sticky menu” plugin, when I set the main menu to be sticky, it also make the top menu sticky along with it, I dont want the top menu to be sticky, I only want the main menu to be sticky. Is there a way to only make the main menu sticky using the CSS code?
Following is the link to my site
https://test.troogs.com/personal-trainer/
Regards,
Danish
Hello,
I ha
I have installed this plugin but it doesn’t work.
why?
My page is:
https://comprarunlavavajillas.com/
Greetings.
]]>Love this plugin but for some reason it’s causing an issue with being able to click on items in the black admin bar to open visual editor or switch back to WP dashboard, etc. It’s not a theme conflict since I tried switching and that didn’t fix it. And tried deactivating plugins, and your plugin is the one causing the conflict. I’ve tried switching to a different notification bar plugin, but they don’t work as well, so I’m hoping you can help me resolve this.
]]>Hi there,
I’m having a problem with the Sticky Bar not applying the correct styles on Mobile screen sizes in Divi. As you know, the Plugin uses Javascript to apply a dynamic style to the HTML document itself (for example, “margin-top: 36.7756px !important”), and then also applies the inverse of this value to the site’s header element (which, in the case of Divi, is .mysticky-welcomebar-apper.et_fixed_nav #main-header).
On Desktop and Tablet sized screens above 768px, these styles appear as normal. However, on mobile screen sizes of 767px and below, the header element CSS styles are NOT being applied, which results in the My Sticky Bar overlapping with and obscuring the header, as well as extra space below the header.
While I COULD in theory write 2 different styles that target .mysticky-welcomebar-apper.et_fixed_nav #main-header, these styles would have to be manually updated every single time I make a change to My Sticky Header’s text or button content, which is obviously not ideal.
Could you please patch out this very small but seriously annoying glitch? Thanks a million! -Mike
P.S. Both WordPress and My Sticky Bar are up to date.
]]>WordFence (security plugin) sent notification yesterday that two files were modified on both our production and staging sites:
wp-content/plugins/mystickymenu/mystickymenu.php
wp-content/plugins/mystickymenu/update.php
Are these changes expected, or should I scan for viruses and delete and then reinstall your plugin?
]]>Hello, we installed your plugin, everything works fine, but we encountered some problem.
When loading the theme preloader, your flexible menu is hidden, we want the menu not to be hidden under any circumstances
We have assigned z -index – 99999 !important to all classes, which you specified in the instructions, as well as site -header , but the menu is still hidden while the page is loading.
But with the bottom menu (another bottom menu plugin), everything is ok
Hi there,
I have a black square that partially covers the 3 lines menu on mobile version.
Hello,
Excellent plugin, I would like to know if it is possible to change the logo when scrolling and if so, how can I do it?
Regards,
Carlos
]]>The Other Class or ID for the top menu bar of my website that I want to use in My Sticky Menu bar plugin is #topbar-right.
But upon scrolling, this menu bar sticks to the left side. The same is true for #topbar-left.
For multiple years (until today), I had held updating the My Sticky Menu plugin and was still on version 2.1.6 as this one did not have this problem. But today, I had to update because of security reasons and now, I have this problem.
Please share some CSS Style code or something so that the menu can be perfectly centred when using the My Sticky Menu.
Thank you.
]]>The Sticky Menu Header is working good. When I click on the Minicart button, it opens up the mini cart drawer. However, at this action, the Sticky Header is covering up the Mini cart drawer, so the first few products are not visible. Kindly help me such that:
Mini cart drawer always takes precedence over the sticky header.
When adding the sticky bar, the rest of the content on the page has a scrolling entry animation on load. Is it possible to disable this?
]]>Hi! First, thanks for this handy plugin!
I’d like to suggest a change for an issue I am having. This plugin is adding a <style> tag in the body that which results in the error “Element style not allowed as child of element body in this context.” as noted by Nu HTML validator (https://validator.nu/). This is a requirement for some accessiblity testing I am doing – that there is no HTML parsing errors.
Currently using version 2.6.5. In this version the style code is output by mystickymenu\welcome-bar.php at line 1405 – 1981. The solution that worked for me is moving the style out of the mysticky_welcome_bar_frontend function which uses add_action( ‘wp_footer’, ‘mysticky_welcome_bar_frontend‘ ); and into a new function which uses add_action(‘wp_head’, ‘mysticky_welcome_bar_frontend_styles’); to put the <style> into the head instead of the body.
So my code is added below mysticky_welcome_bar_frontend and looks like this:
function mysticky_welcome_bar_frontend_styles()
{
$welcomebar = get_option( 'mysticky_option_welcomebar' );
if ( ( isset($welcomebar['mysticky_welcomebar_expirydate']) && $welcomebar['mysticky_welcomebar_expirydate'] !='' && strtotime( date('m/d/Y')) > strtotime($welcomebar['mysticky_welcomebar_expirydate']) ) || !isset($welcomebar['mysticky_welcomebar_enable'] ) || (isset($welcomebar['mysticky_welcomebar_enable']) && $welcomebar['mysticky_welcomebar_enable'] == 0) ) {
return;
}
if( isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] == 'System Stack' ){
$welcomebar['mysticky_welcomebar_font'] = '-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"';
}
$welcomebar['mysticky_welcomebar_font'] = (isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] == 'Inherit') ? strtolower($welcomebar['mysticky_welcomebar_font']) : $welcomebar['mysticky_welcomebar_font'];
?>
<style>
/* The CSS code ... */
</style>
<?php
}
add_action('wp_head', 'mysticky_welcome_bar_frontend_styles');
A couple other changes I made is adding attributes to the close button to make it keyboard and screen reader accessible (tabindex, role. and aria-label).
<span class="mysticky-welcomebar-close" style="color:#ffffff" tabindex="0" role="button" aria-label="close">X</span>
// JS snippet to allow close button to work with keyboard.
$('.mysticky-welcomebar-close').on('keydown', function(e) {
if(e.keyCode == '13'){
$(this).trigger('click');
}
});
Unfortunately I will have to re-add these changes after any updates. So, I was wondering if it is possible for your team to incorporate something similar into the plugin?
Cheers!
]]>I would like the menu to be shown at the start of the scroll. And when you scroll up the menu should be visible once again. I guess what I’m trying to say, is the menu takes up 3/4 of the screen on a mobile device. I would like the menu to be not so big.
]]>your plugin is great except that the bar hides the mobile menu when the hamburger menu item is clicked. some other people have reported this too, hope you can fix quickly
]]>Hello, I am using mystickymenu with Inspiro Blocks. I have gotten the menu to stick as expected. However, when I scroll down, the menu shifts slightly to the left. Any ideas would be much appreciated!
Thanks!
]]>Hi, I would like to enable the hamburger menu on mobile. Right now it’s impossible to read the menu items.
How can I do this?
Thank you!
]]>Hi I am trying out the free version of mystickymenu – I installed the plugin and set up a welcome bar and I would like to assign a user capability to turn on and off the bar as needed. How do I go about doing that? I am not finding “mystickymenu” in the capabilities. Please help. Thank you.
]]>Hello,
Please fix the deprecated jQuery:
jQuery.fn.resize() event shorthand is deprecated /mystickymenu/js/welcomebar-front.js
Hi,
When using the Welcome bar, there is an overlaping issue both on desktop and mobile.
On mobile, it is completely hidding the navigation bar.
How can I set the Welcome bar to be on top of the menu, without hidding it?
Thanks!
]]>Hey. How do you add a border on scroll down on the free version of the plugin?
]]>Dear Team,
I hope you are fine
I have having an issue with the sticky menu as follows :
– Upon add a class in menu section , the menu is not display correctly , regarding it’s full width.
I have record the issue i am having in the video present on the link https://www.awesomescreenshot.com/video/16813317?key=58060d530befd0f4acd0141795e37915
Can you please guide me on which solution can be taken to overcome this issue.
Thank you Team
We are having an issue regarding our website the sticky header is working on desktop but not on mobile. Can you check and let me know why?
]]>We are having an issue regarding our website the sticky header is working on desktop but not on mobile. Can you check and let me know why?
nakhraswag.com
Hello All,
Kindly suggest why the mystickymenu is?inactive – menu sticks the page ??but seems dead . I am not able to access the menu icons when scrolled down .
Thanks
]]>How would I add a shadow behind the sticky menu? Would really like to have that!
]]>How to set container width and height i’m using generatepress theme
and table of content sidebar in
please guide me
]]>this stickymenu is good . i use for 1 year, and after i upgrade to new version, and edit the old welcome bar in the dashboard,looks very good,then i found that if i close the welcomebar there is a old version welcome bar beneath it . and the content is the one before i edit .
i disable the plugin ,or deleted . the old welcome bar still on the top of my homepage .
how to fix it ?