Blog

Composer Phar Usage Guide

User Composer.phar Assistant `composer.phar` is the executable file for **Composer**, a dependency management tool in PHP. It is a PHP Archive (PHAR) file that allows you to install, update, and manage libraries and dependencies for your PHP projects. ### How to Use `composer.phar`: 1. **Download Composer**: If you don’t have Composer installed globally, you can […]

Suspend Cloudflare Edge Caching

User suspend edge caching and policy feature cloufglare Assistant To suspend edge caching and the policy feature in Cloudflare, you can follow these steps: 1. **Log in to Cloudflare:** – Go to the Cloudflare dashboard and log in with your account credentials. 2. **Select your domain:** – Click on the domain for which you want […]

Cache Configuration Debugging

User I think in development imode its serves latest copy of the website with only apply wp-admin cache like wp super cache/speedster/divi, There may be some links broken or cache config not setup at cloudflare thats some time breaks the site when cloudlflare cache is turned on , I'll debug this at cloudflare for cache […]

External Product Button Change

User we have to type of product external and inter and change add to cart button at shop to link for external product detail page Assistant To achieve this functionality in WooCommerce, where you want to replace the **Add to Cart** button with a link to the external product's detail page for external products on […]

Swiper Autoplay Interaction Fix

User var swiper = new Swiper(".swiperslides", { slidesPerView:3, spaceBetween: 30, loop: true, // Enable infinite looping autoplay: { delay: 1, }, pagination: false, speed: 8000, breakpoints: { 0: { slidesPerView: 1.2, spaceBetween: 10, }, 1024: { slidesPerView: 3, spaceBetween: 30, } } }); // Stop autoplay // Stop autoplay // Track the autoplay state let […]

Start Counting on Visibility

User Can the counting start from the moment when the element is visible? jQuery(document).ready(function($) { $('.elementor-counter-number').css('opacity', 0); // Hide numbers initially $('.elementor-counter').each(function(index) { var counter = $(this); var countTo = parseFloat(counter.find('.elementor-counter-number').data('to-value')); // Get the target value as a float var hasDecimals = countTo % 1 !== 0; // Check if the number has decimals counter.find('.elementor-counter-number').text(0); […]

Database Testing on Demo Server

User I’ve seen comments, and I’ve already applied possible solutions to the live site to fix this issue. The only option left is that I need to replicate the live site database to our demo server and then test it properly at our demo server. Then I can find what the actual problem is in […]

Owl Carousel Continuous Slider

User owl continuous slider Assistant To create a continuous slider using Owl Carousel, you'll want to set it up so that items slide continuously in a loop without stopping. Here’s a basic example of how to achieve this: ### Step 1: Include Owl Carousel CSS and JS Make sure you include the Owl Carousel CSS […]

Swiper Autoplay Pause Issue

User var swiper = new Swiper(".swiperslides", { slidesPerView:3, spaceBetween: 30, loop: true, // Enable infinite looping autoplay: { delay: 1, // Time between slides in milliseconds (3 seconds) pauseOnMouseEnter: true, // Prevent autoplay from stopping on user interaction disableOnInteraction: false }, pagination: false, speed: 6000, breakpoints: { 0: { slidesPerView: 1.2, spaceBetween: 10, }, 1024: […]

Swiper Autoplay Configuration Fix

User var swiper = new Swiper(".swiperslides", { slidesPerView:3, spaceBetween: 30, loop: true, // Enable infinite looping autoplay: { delay: 1, // Time between slides in milliseconds (3 seconds) pauseOnMouseEnter: true, // Prevent autoplay from stopping on user interaction disableOnInteraction: true }, pagination: false, speed: 10000, breakpoints: { 0: { slidesPerView: 1.2, spaceBetween: 10, }, 1024: […]