Month: August 2025

Moneris reCAPTCHA Error Fix

User woocommerce monreis plugin Please verify captcha below to proceed with your order – error on payment inline form even google recaptcha selected at checkout Assistant The error message: > **"Please verify captcha below to proceed with your order"** even **after enabling Google reCAPTCHA** in the **Moneris WooCommerce payment plugin** usually means **reCAPTCHA validation is […]

Opayo DigiCert Migration Update

User longer support Entrust certificates, Opayo will be migrating all our certificates to DigiCert. The planned migration date for the new DigiCert certificates is the 27th May.‌You can find out more here:  https://security.googleblog.com/2024/06/sustaining-digital-certificate-security.html‌Who are DigiCert?DigiCert is a leading Certificate Authority in the industry. DigiCert actually held Opayo's certificates 4 years ago.‌Do I need to do […]

Concrete CMS CRUD Package

User concrete cms create custom package to crud operation Assistant To create a **custom Concrete CMS package** that performs **CRUD operations**, follow these steps. We’ll walk through: 1. **Package setup** 2. **Database schema creation** 3. **Single page controller for CRUD** 4. **Basic view for listing and form** — ## ✅ 1. Package Directory & Controller […]

Migrate SSL Conf to New

User shareyourthoughts-le-ssl.conf we have previously registered aws ssh to above now i have create new conf wp-rock.conf I want to remove from prev and add it to new Assistant To move your existing SSL configuration (used with AWS/Apache) from `shareyourthoughts-le-ssl.conf` to a new one `wp-rock.conf`, follow these steps: — ### ✅ Step-by-step Instructions #### 1. […]

Merchant Feed Logging

User 'application/xml'] ); } } apply proper error handlign and save log in $db->executeQuery("CREATE TABLE IF NOT EXISTS shoppingfeedlog ( id INT AUTO_INCREMENT PRIMARY KEY, feed_id INT NOT NULL, updated_at DATETIME NOT NULL, status VARCHAR(50), error_message TEXT, INDEX idx_feed (feed_id), INDEX idx_status (status), INDEX idx_updated_at (updated_at), FOREIGN KEY (feed_id) REFERENCES shoppingfeedconfiguration(id) ON DELETE CASCADE )"); […]

Elementor Widget WooCommerce

User create elelmentor wiget to display new arival 5 product based on attached layout wordpess woocommerce. Assistant To create an **Elementor widget** that displays **5 latest arrival WooCommerce products** using a layout similar to your provided image, follow these steps: — ### ✅ **Step-by-Step: Create "Latest Arrival" Elementor Widget for 5 Products** — ### 1. […]

Google Merchant Feed Sample

User Google merchant feed sample Assistant Here is a **sample XML structure** for a **Google Merchant Center feed** (also known as a product feed), which complies with [Google Shopping feed specifications](https://support.google.com/merchants/answer/7052112): <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:g="http://base.google.com/ns/1.0"> <channel> <title>Your Store Name</title> <link>https://www.example.com/</link> <description>Example product feed for Google Merchant</description> <item> <g:id>12345</g:id> <g:title>Red T-Shirt</g:title> <g:description>Comfortable cotton red […]

Bypass homepage cache WP

User Bypass cache home page set by setting wordpress funcitons.php Assistant To **bypass caching on the homepage** programmatically via your WordPress theme’s `functions.php`, you can use the following approach to instruct caching plugins or reverse proxies (like Varnish, Cloudflare, etc.) **not to cache the homepage**: — ### ✅ Option 1: Set `Cache-Control: no-cache` Header for […]

Download Media in WP

User how to download multiple image in flder from medIA IN WORDPRESS Assistant To download multiple images from the **WordPress Media Library** into a **local folder**, you can use any of the following methods based on your access level: — ### ✅ **Method 1: Using cPanel or File Manager (if you have hosting access)** 1. […]

Cordova Android Clean Build

User android cordova clean build Assistant To perform a **clean build** in an **Apache Cordova** Android project, follow these steps: — ### 🔄 **1. Clean the Cordova Android Platform** cordova clean android > This command removes the `platforms/android/build` directory and resets the build state. If `cordova clean` isn't available in your version (older ones), you […]