Month: August 2025

Shipping calculator visibility fix

User section.shipping-calculator-form { display: block !important; } Shipping costs will be calculated once you have provided your address. Calculate shipping Select a country… United Kingdom (UK) Update totals for the first time I want to show it open always ! with iportant , i'm unable to do this , if I'm adding important to block […]

Multilingual Product Feed

User Okay now we multilingual set up in concrete cms 9 How to get product title and description based on it 0) { foreach ($products as $product) { $productu = Product::getByID($product['pID']); $page = Page::getByID($productu->getPageID()); if (!$page || $page->isError()) { $this->logFeedStatus($db, $config['id'], 'error', "Missing or invalid page for product ID {$product['pID']} ({$product['pName']}). Page ID: {$pageID}"); continue; […]

WooCommerce Hook Example

User woocommerce_admin_order_data_after_customer_details Assistant The `woocommerce_admin_order_data_after_customer_details` action hook in WooCommerce allows you to **display custom content in the admin order detail page**, just after the customer billing/shipping information. — ### ✅ Use Case: For example, if you want to display a custom order meta field value (e.g., `custom_order_note`) just below the customer details on the admin […]

DDEV unlist project

User ddev unlist project Assistant To **unlist a project in DDEV**, so it no longer appears in `ddev list`, you can run the following command from **inside the project directory**: ddev delete –unlist ### Explanation: – `ddev delete` removes the project's containers and volumes. – `–unlist` ensures the project is also removed from DDEV’s global […]

Sync to Probo Action

User add new action in Order action dropdown in wordpress woocmmerce admin order detail page names "Sync to Probo" using class Assistant To add a new **"Sync to Probo"** action in the **Order actions dropdown** in the WooCommerce **admin order detail page**, you can hook into WooCommerce using the `woocommerce_order_actions` and `woocommerce_order_action_{$action}` hooks. Here is […]

DDEV unlist command

User ddev unlist project Assistant The command `ddev unlist` is used to remove a project from DDEV's list of known projects without deleting the actual project directory. To unlist a specific project, you can use: ddev stop [project-name] # Optional: stops the project if it's running ddev unlist [project-name] For example: ddev unlist my-laravel-site This […]

Android 14 Camera Permission

User document.addEventListener('deviceready', function() { var TOKEN = 'circusvegastoken'; $(document).ready(function() { var eventId = -1; var eventDateId = -1; var scanConfig = { preferFrontCamera : false, // iOS and Android showFlipCameraButton : true, // iOS and Android showTorchButton : true, // iOS and Android torchOn: false, // Android, launch with the torch switched on (if available) […]

WooCommerce Custom CSS

User Sale! S&R Insulated VDE Diagonal Side Cutter/Electrical Wire Cutters 160mm 1000V €59.99 Original price was: €59.99.€49.99Current price is: €49.99. S&R Insulated VDE Diagonal Side Cutter/Electrical Wire Cutters 160mm 1000V  quantity Add to cart Categories: FIXTURES & FITTINGS, TOOLS Reviews (0) Reviews There are no reviews yet. Be the first to review “S&R Insulated VDE Diagonal […]

Settings Page Concrete CMS

User also create a settings page in concrete cms 9 custom package like number of records per page and cron run or not Assistant Here’s how you can create a **Settings Page** in your **Concrete CMS 9 custom package** for options like: – **Number of records per page** – **Enable/disable cron run** — ### ✅ […]

Add Discount Percentage WooCommerce

User add discount percentage to product loop in elemenor products widgetes Assistant To **display the discount percentage** (e.g., **"25% OFF"**) in the **product loop** of Elementor’s default WooCommerce Products widget, you’ll need to add a custom PHP snippet. Elementor does not show discount percentage by default, but you can **extend it via a child theme** […]