noelhefele
Forum Replies Created
-
I’ve tested on an ios device, latest os. I’ve cleared the caches, but I will check on another device tonight and report back.
Thanks for the reply –
I currently see the issue on IOS only, Safari, Chrome, and firefox. I cannot test Android at this time…was that what you tested it on? Desktop is not an issue.
Let me try to describe it a bit better.
When I press the menu button the menu immediately appears fully extended for a split second. It then disappears in a “flash” to then slide in from the left side.
On the desktop, when I press the menu button, the menu slides in from the left as expected.
Not a big issue, but I was just curious if there was a fix I might try..
Thanks again,
Noel
I was trying to chase down the document.body.requestFullscreen approach, but maybe there is a way to make the popup show up past the scroll down limit only on mobile..
My fault!~ I didn’t think it would cause the error but I couldn’t find the culprit. Found it now and that line had nothing to do with it. Thanks for responding though!
I’m having this same issue suddenly…
Forum: Plugins
In reply to: [WP Scroll Depth] Scroll Depth does'nt work with my websiteSame error here…
Forum: Plugins
In reply to: [Testimonials Widget] Scroll is 'sticky' on iphone?is there a better way than changing the reference in jquery.bxslider.min.js?
I changed
touchEnabled:!0,
to
touchEnabled:!1,
It took a little while to realize that the client was not scrolling exactly vertical. It seems that a wayward scroll can have someone thinking they are scrolling down, but the testimonial is registering it as a side swipe. It also took a bit to figure out that the Touch was enabled by default.
I may have missed something dreadfully obvious but please let me know if there is a better way to do this…
Thanks!
Forum: Plugins
In reply to: [Testimonials Widget] Scroll is 'sticky' on iphone?ah this perhaps is the Touchenabled function. I’m trying to set it to false, but apparently haven’t gotten the shortcode right yet.
resolved!
Thanks! good to know of the custom JS events. Works perfectly and simply.
(sorry for the delay!)
rated and reviewed! Will have to look into github, as I’m not much of a coder, but it could be fun to check out from time to time…
If the body tag has “overflow-y: scroll” when no pop up is visible, it would be great if the body tag could change to “overflow-y:hidden” when the popup is visible.
This would freeze the scroll.
I got it to partially work though a custom function with jquery, except I can’t figure out how to target the close “click” on the div overlay.
$('.popmake-overlay').on('click', function (e) { $('body').css('overflow', 'auto'); });
is what I have but it isn’t working. If you have any suggestions for that I’d be grateful!
(for example – the code below is what I’m working with…)
<?php } function lock_contact_background() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ $('#menu-item-96').on('click', function (e) { $('body').css('overflow', 'hidden'); }); $('.popmake-close').on('click', function (e) { $('body').css('overflow', 'auto'); }); $('.popmake-overlay').on('click', function (e) { $('body').css('overflow', 'auto'); }); $(document).keyup(function(e) { if (e.keyCode == 27) $('body').css('overflow', 'auto'); // esc }); }); </script> <?php } ?>
I’m sorry if I wasn’t clear… I don’t want it to scroll with the page—the page should not scroll at all when the popup is displayed.
Thanks
[not resolved]
Forum: Plugins
In reply to: [Testimonials Widget] Possible to delay autoplay until visible on screen?done! Thanks again…
Forum: Plugins
In reply to: [Testimonials Widget] Possible to delay autoplay until visible on screen?Thanks for responding!
I had found these –
https://www.themepunch.com/faq/api-example-pauseresume-the-slider-on-page-scroll/
but I’m too uninformed on ways to modify these examples to my situation.
I also tried the lazy load plugin, but that seems more geared toward images.
Great plugin! I only recently found it and am planning to add it to my personal site.
I’m interested in this as well..