Divyang Chaudhary
Forum Replies Created
-
Hello @itapress
Thank you so much for bringing this to our attention.
Weβre happy to inform you that this has been fixed in our latest release, Nexter Blocks v4.7.7. These strings are now properly handled and available for translation.
Could you please update to the latest version and confirm on your end? If you still find any strings that we may have missed, please let us know and we will address them in the next update.
Thanks again for your valuable feedback.
Best regards.
Hello @itapress
Thank you so much for bringing this to our attention and for sharing the exact file references. It really helps us pinpoint issues quickly.
Weβre happy to inform you that this has been fixed in our latest release, Nexter Blocks Free v4.7.7. These strings are now properly wrapped and available for translation.
Could you please update to the latest version and confirm on your end? If you still find any strings that we may have missed, please let us know and we will take care of them in the next update.
Thanks again for your valuable feedback.
Best Regards.
Hello @itapress,
Thank you for your patience. Our team has fixed the issues in the latest release. Please update the plugin to v4.7.6 and check.
If you have any concerns or need further help, let me know.
Best Regards.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Header issueHello @carlgross
Thanks for your patience, and sorry for the delay getting back to you.
To clear up the confusion from our earlier reply: the absolute positioning on your header is actually coming from the custom CSS our team had provided previously to fix a separate issue. That is why it may not be visible as something you set yourself.
Here is what is happening: that CSS makes the header sit independently from the page flow. When the sticky header kicks in on initial load, the page content shifts up underneath it, which causes the height and padding changes you are seeing. After scrolling, the sticky behavior normalizes and everything looks correct again.
To fix this while keeping the sticky header active, adding a blank container at the top of your page content with the same height as the header acts as a buffer. The header overlaps that empty space instead of your actual content, and your logo can still overlap the real content below it since its own absolute positioning is separate. Your original design intent stays intact.
I hope this clear things up. If you have any queries, please let me know.
Best Regards.
Hello @itapress
Thanks for reaching out about this.
We do update the POT file with each release, so we would like to look into this further. Could you help us understand how you determined the strings are from version 4.6.4? The translate.wordpress.org page does not seem to display a specific plugin version, so knowing where you spotted that would help us investigate on the right track.
Also, if you have noticed any specific strings that are missing or different from what you see in the current version, sharing those would be really helpful for us to cross-check.
Looking forward to your reply.
Best Regards
Hello @agencedcandc
Thank you for bringing this to our attention.
Our team has resolved the issue, and a new version will be released later this week.
In the meantime, if you have any questions or need further assistance, please feel free to reach out.
Best regards
Hello @programmin
You can use Elementor v4 with UiChemy as there are no known compatibility issues with it.
Just a heads up though: Grid Container support is something we are actively working on and it is not available yet. We expect to have it out within the coming month. Once it is live, we will be sure to update our documentation as well.
If you run into anything while working with v4 in the meantime, feel free to reach out. We are right here to help!
Best Regards
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Header issueHello @carlgross
Thank you for your patience while our team looked into this.
We reviewed your site setup and found the root cause. Your header is set to absolute position, which makes it sit independently from the rest of the page content. Because of this, the header overlaps the page content on load instead of pushing it down.
To fix this, add a blank container at the top of your page with the same height as your header. This acts as a placeholder, so when the page loads, the header overlaps the blank container instead of your actual content, and everything below starts from the right position.
Once you add the container and publish the page, the overlap issue should be resolved. If you need any help setting this up, feel free to reach out and we will be happy to assist!
Best Regards
Hello @jdhunter
Thank you for sharing this with us.
This has been fixed in Nexter Extension v4.6.4, which is live now.
Please update to the latest version and it should sort this out. If anything still looks off after the update, just let us know and we will dig in further.
Best Regards.
Hello @collybie
We are sorry for the delay in our response.
Are you still encountering the issue or fixed it?
As our team has reviewed the site and everything appears to be working fine. The vertical menu issue you are experiencing is most likely caused by a caching issue.
We recommend clearing both your site cache and server cache from your hosting provider to confirm whether the issue persists on your end.
Please refer to the video below to see how the site looks on our end:
https://clips.posimyth.com/watch/b8b19e60383972e66a89
If the issue still persists after clearing all cache, feel free to reach out and we will be happy to assist you further.
Best Regards.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Header issueThank you for the clarification.
It looks like the Sticky Header plugin may have been deactivated on your end. The site appears fine right now. Refer to this image: https://prnt.sc/2U6rq9bFoZTO
Could you reactivate it when you get a chance? That will help us reproduce the issue and find the right fix for you.
We are right here once it is back on.
Best Regards
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Header issueHello @carlgross
Thanks for your patience, and sorry for the delay in getting back to you.
From your screenshots, we can see the header is getting cut off by the WordPress admin bar when you are logged in. Here is a small JS snippet that will fix this by pushing the sticky header down by 32px whenever the admin bar is active.
Please add the following code to your site (you can use a custom JS plugin or the theme’s custom JS field):
jQuery(document).ready(function ($) {
function fixAdminBarSticky() {
var header = $('.she-header-yes');
var isAdminLoggedIn = $('body').hasClass('admin-bar');
var windowWidth = $(window).width();
if (header.hasClass('she-header')) {
if (isAdminLoggedIn && windowWidth >= 768) {
header.css({
"top": "32px",
"transition": "all 0.4s ease"
});
}
}
}
$(window).on('scroll resize', function () {
setTimeout(fixAdminBarSticky, 10);
});
fixAdminBarSticky();
});I hope this helps. If the issue persists or we are missing something here, please let us know.
Best Regards.That honestly made our day! π
We are so glad the team could jump in and get things sorted quickly for you. Knowing it made a real difference is what keeps us going.
Thanks so much for taking the time to share this, it truly means a lot. We are always here if you ever need us again!
@carlgross Anytime!
Thank you for the confirmation:)Hello @carlgross
Thanks for the detailed explanation. That “snap” happens because the header leaves the normal page flow when it becomes fixed, causing content to jump up.To fix this, please add the following custom CSS to your site (Appearance > Customize > Additional CSS):
.she-header-yes.header { position: fixed; top: 0; left: 0; z-index: 999; } body { padding-top: 80px; }Just adjust the
80pxvalue to match your actual header height if needed. After adding this, clear any cache on your site so the changes reflect right away.Let us know how it goes!
Best Regards.