My hamburger menu does not work when I have a sticky menu activated, but it works as soon as I deactivate the sticky header. Can you please test it on your environment to check if you also have this bug?
I am very sorry for the late reply, we were not working on the weekend.
Can you please provide me with an URL, so I can check live why it is not working, that's supposed to work, but I need to make sure to see why it is not working.
Feel free to ask for anything you need.
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.
There are two elements <a> with id="fixed-section-hamburger" (the icon hamburger menu), so for jQuery it's an issue to open the overlay menu. I solved the problem in inserting the $this->get_ID() after id="fixed-section-hamburger to be unique. And in jQuery I use it as selector in event click. ($('.a-hamburger-holder#<?php echo esc_attr($this->get_ID()) ?> #fixed-section-hamburger<?php echo esc_attr($this->get_ID()) ?>').on('click', function(e) {)
File includes>widgets>site>hamburger.php lines 266 and 272 in plugin neuron-core-bifrost
I have just released an update which fixes this issue, so please make sure to install Bifrost version 2.0.2. The plugin neuron core 2.0.1 is update there, so remove the old one and install it again in Appearance > Install Plugins.
The upload will take some time, so it will be ready from this post time up to 10 minutes. You can check on the last time update at ThemeForest. https://prnt.sc/pq67e8
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.
Also, I tried to trade the acf-fields.php, I didn't add the "esc_html__(" for all strings in this file.., I used the function find/replace of my code editor. But it will be great to add this string in the bifrost.pot How can I send you the acf-fields.php file?
1) Thanks for reporting it, we'll have a brief look to see how that can get fixed on the best way, thank you for reporting it.
2) They should be translate ready as far I know from ACF, maybe the reason why they're not appearing as translatable is that they're only included and not in Custom Fields Panel.
After that all you need to do is sync them from the acf-json file. Go to Custom Fields > Field Groups (sync tab) select the three groups and sync them. The plugin ACF directly exports them and basically we can't add any esc_html__
Hello,
My hamburger menu does not work when I have a sticky menu activated, but it works as soon as I deactivate the sticky header. Can you please test it on your environment to check if you also have this bug?
Kind regards,
Diana
Hi Diana,
I am very sorry for the late reply, we were not working on the weekend.
Can you please provide me with an URL, so I can check live why it is not working, that's supposed to work, but I need to make sure to see why it is not working.
Feel free to ask for anything you need.
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.
Hi,
I have the same issue with the sticky option. The button burger menu works only when it's sticky (page scrolled)...
Thanks!
I found the issue:
There are two elements <a> with id="fixed-section-hamburger" (the icon hamburger menu), so for jQuery it's an issue to open the overlay menu. I solved the problem in inserting the $this->get_ID() after id="fixed-section-hamburger to be unique. And in jQuery I use it as selector in event click. ($('.a-hamburger-holder#<?php echo esc_attr($this->get_ID()) ?> #fixed-section-hamburger<?php echo esc_attr($this->get_ID()) ?>').on('click', function(e) {)
File includes>widgets>site>hamburger.php lines 266 and 272 in plugin neuron-core-bifrost
Best regards!
Hi,
Thank you very much for reporting the issue
I have just released an update which fixes this issue, so please make sure to install Bifrost version 2.0.2. The plugin neuron core 2.0.1 is update there, so remove the old one and install it again in Appearance > Install Plugins.
The upload will take some time, so it will be ready from this post time up to 10 minutes. You can check on the last time update at ThemeForest. https://prnt.sc/pq67e8
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.
Hi,
So sorry, after download your theme in new version, the same issue appeared. It was my fault, I forgot to say we should replace the line 276 by
$('<?php echo esc_attr($hamburger_selector) ?>').removeClass('active');
$(this).parents('header').find('<?php echo esc_attr($hamburger_selector) ?>').toggleClass('active');
It works for me!
Also, I tried to trade the acf-fields.php, I didn't add the "esc_html__(" for all strings in this file.., I used the function find/replace of my code editor. But it will be great to add this string in the bifrost.pot
How can I send you the acf-fields.php file?
Best regards!
Hi BerlinSimon,
1) Thanks for reporting it, we'll have a brief look to see how that can get fixed on the best way, thank you for reporting it.
2) They should be translate ready as far I know from ACF, maybe the reason why they're not appearing as translatable is that they're only included and not in Custom Fields Panel.
You can comment the line 88 in functions.php, so they will not be included directly. https://prnt.sc/pwsmaq And then you can enable the ACF fields. https://prnt.sc/pwsnmc
After that all you need to do is sync them from the acf-json file. Go to Custom Fields > Field Groups (sync tab) select the three groups and sync them. The plugin ACF directly exports them and basically we can't add any esc_html__
Video translations how it works on WPML:
- https://www.youtube.com/watch?v=GtXtT1EtJrc
Feel free to ask for anything you need.
Kind Regards
Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.