Blog

WooCommerce Label Generation Plugin

User <script> window.location.href='admin.php?page=generate-label&orderids=" . implode(',', $order_ids) . "' </script> "; exit; } function pmm_generate_label_style() { ?> <style> div#custom-popup { margin-top: 50px; } div#generate_label { background: #fff; } .generate_label { width: 50%; text-align: center; } .dosage_ins { margin-top: -3%; } .dosage_ins p { font-weight: 600; } .client_name-date { margin-top: -3%; } .warning.url.address td { margin-top: -15px; […]

Hide PDF Invoice Notice

User The PDF generator has been updated, this update may mean your logo is not displaying on the PDF invoice. If your logo is missing from the invoice you can set the "Set Resources Folder" option to "Yes" in the PDF Invoices Settings. More information is available in the PDF Invoices Documentation. hide above admin […]

Disable Plugin Notices WordPress

User turn off plugin notices in wordpress admin from particular plugins Assistant To disable plugin notices in the WordPress admin for specific plugins, you can use the following approaches: ### 1. **Using a Code Snippet** You can add a custom code snippet to your theme's `functions.php` file or in a custom plugin. Here's how: #### […]

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 […]