Blog

Variation Out of Stock Message

User Variation swatches plugin If variation not avail in product detail page then also so the message variation out of stock message Assistant To show a **“Variation Out of Stock”** message on the **product detail page** even when that variation is not selectable or visible (due to being out of stock), you can achieve this […]

Start Android Studio Ubuntu

User start android studio ubuntu Assistant To start **Android Studio on Ubuntu**, follow these steps depending on how you installed it: — ### ✅ **If installed via JetBrains Toolbox or manually extracted from ZIP:** 1. Open a terminal. 2. Navigate to the Android Studio `bin` directory: cd ~/android-studio/bin *(Adjust the path if you installed it […]

Weather Icon for Cordova

User generate weather png icon for apache cordvoa android res Assistant To generate a weather-themed PNG icon for an Apache Cordova Android app, it must follow Android's **resource directory structure and size requirements**. Here's what you need: — ### ✅ Icon Design Requirements: – **Style:** Weather theme (sun, cloud, rain, etc.) – **Format:** `.png` – […]

Exclude Homepage from Cache

User exclude hompe page from cache wordpress Assistant To **exclude the homepage from cache** in WordPress, the approach depends on the caching system or plugin you're using. Here's how to do it with popular caching plugins: — ### ✅ **1. WP Super Cache** Go to: **Settings > WP Super Cache > Advanced** Scroll to **“Accepted […]

Elementor Widget Layout

User <style> .latest-arrivals-wrapper { display: flex; flex-direction: column; gap: 40px; } .latest-arrival-row { display: flex; justify-content: space-between; /* this is the key */ align-items: flex-start; gap: 30px; padding: 25px; border: 1px solid #ccc; background: #fff; flex-wrap: wrap; position: relative; } /* LEFT COLUMN */ .arrival-left { flex: 0 0 200px; display: flex; flex-direction: column; gap: […]

ACF Register Page Template

User now , I have created on page -register page under pages in wordpress , and under ACF created this as fgiven in image , now give me template to show it ! Assistant To display the **ACF Flexible Content Field** you created for the "Register Page" in your WordPress theme, follow this template logic. […]

Odido SOAP API Call

User odido soap api how to call Assistant To call the **Odido SOAP API**, you'll need the WSDL URL provided by Odido (formerly T-Mobile Netherlands), a valid account/API key, and a SOAP client setup. Here's a general step-by-step guide using PHP (with `SoapClient`), but the concept is similar for any language. — ### ✅ Step […]

Owl Carousel Navigation Arrows

User <style> .product-tabs-nav { display: flex ; gap: 10px; margin-bottom: 15px; justify-content: center; margin-bottom: 60px; } .tab-button { background: none; border: none; font-size: 16px; font-weight: 500; padding: 6px 8px; color: #002526; cursor: pointer; transition: color 0.3s; margin: 0 !important; } .tab-button.active { position: relative; } .tab-button.active::after { content: ""; position: absolute; bottom: 0; left: 50%; […]

Owl Carousel Troubleshooting

User <style> .top-categories { display: grid ; grid-template-columns: repeat(3, 1fr); gap: 20px; justify-content: center; margin-top: 20px; margin-bottom: 72px; } .top-category-item { background: #fff; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); overflow: hidden; text-align: center; width: 100%; transition: transform 0.3s ease; padding: 12.2px; } .top-category-item a{ display: flex; flex-direction: column; gap: 24px; } […]

Mobile Nav and Dots

Assistant To **show navigation arrows (`nav: true`) only on mobile** and **disable dots completely**, you'll need to: 1. Use responsive settings in OwlCarousel to toggle `nav` based on screen width. 2. Set `dots: false` globally (which you already did). 3. Optionally, ensure `navText` is defined if you're using SVGs. Here's your updated OwlCarousel initialization inside […]