Month: April 2025

Pending Order Logging Solution

User Regarding Pending order not found , I have heard many times in this theard that pending orders not stored I think we can make a log file/or a custom table in which we can store request data in one single column like content $_POST with no validation applied before the code start inserting to […]

Checkout Flow Customization

User <script> </script> <script> </script> <script> </script> <script> </script> <script> "> </script> –> <script> "> </script> <script> </script> <script> jQuery(document).ready(function() { function checkEmailValue(value, arr) { var status = 'not_exist'; for (var i = 0; i < arr.length; i++) { var name = arr[i]; if (name == value) { status = 'exist'; break; } } return […]

Scroll based slide update

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; const updateSlider = ($item) => { const newBg = $item.data('bg'); $overlayslider.css('background-image', `url(${newBg})`); $item.find('.content, .description').addClass('active'); $item.siblings().find('.content, .description').removeClass('active'); }; // Initial load updateSlider($hoverItems.eq(currentIndex)); // Scroll-based slide logic $(window).on('scroll', function () { const scrollTop […]

Wheel scroll slider update

User $(window).on('scroll', function () { const scrollTop = $(window).scrollTop(); const overlayOffset = $overlaySliderGrid.offset().top; const overlayHeight = $overlaySliderGrid.outerHeight(); console.log(scrollTop, overlayOffset, overlayHeight); if (scrollTop >= overlayOffset && scrollTop Assistant To make the **slide change on every single mouse wheel scroll**, you need to switch from scroll distance logic (which triggers based on total `scrollTop` distance) to handling […]

Email issue investigation request

User I've just checked the contact form email issue on our mails nethues and gmail and its succesfully received after testing I've putted back the orignal to mail May its going to "info@hagemann-systems.de" spam could I get cpanel details to check it in more detail? Correct above setence Assistant Sure! Here's a corrected and more […]

Slider Scroll Optimization

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; let isVisible = false; let scrollCooldown = false; // Prevents rapid scrolls const updateSlider = ($item) => { const newBg = $item.data('bg'); $overlayslider.css('background-image', `url(${newBg})`); $item.find('.content, .description').addClass('active'); $item.siblings().find('.content, .description').removeClass('active'); }; const changeSlide […]

Single Scroll Slide Change

User $mainparent[0].addEventListener('wheel', function (e) { if (!isVisible) return; const delta = e.deltaY; if (delta > 0) { changeSlide('down'); } else if (delta < 0) { changeSlide('up'); } e.preventDefault(); }, { passive: false }); make above on single scroll it will change slide Assistant To ensure the slide changes **on every single scroll**, we need to […]

Wheel scroll slider fix

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; let isVisible = false; // Flag from intersection observer const updateSlider = ($item) => { const newBg = $item.data('bg'); $overlayslider.css('background-image', `url(${newBg})`); $item.find('.content, .description').addClass('active'); $item.siblings().find('.content, .description').removeClass('active'); }; let lastDirection = null; let […]

Oppo A17 Unlock Methods

User Oppo 17 lock password forget how to unlock Assistant If you've forgotten the lock password on your Oppo A17, there are several methods you can try to regain access to your device: — ### 🔓 Method 1: Use Dr.Fone – Screen Unlock (No Data Loss) Dr.Fone is a third-party tool that can remove screen […]

Slider Navigation Boundaries

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; // For tracking the selected item for keyboard navigation or scroll let xPos = 0; // Initialize xPos let yPos = 0; // Initialize yPos // Function to update background and […]