Blog

Form aanpassen en integreren

User Search Zoeken naar: Zoeken naar: use last form only in that replace it with classes and make exactly like that ! Assistant Here is the cleaned and integrated version of your **final search form** using the **classes from the last form only**, properly formatted and ready for use: <div class="searchform-wrapper ux-search-box relative Hero-search is-normal"> […]

WooCommerce registration CAPTCHA

User  * Assistant To add the "Are you a human? Please, solve 9×12" verification field to your WooCommerce registration form (as seen in the image), you'll need to: 1. Add a new field to the registration form. 2. Validate it on submission. 3. Display an error if the answer is incorrect. Here’s your **full updated […]

Flatsome Blog Table Archive

User Flatsome wordpress theme create blog posts page with tables based archive New old Assistant To create a **Blog Posts Page with a Table-Based Archive (New to Old)** layout in the **Flatsome WordPress theme**, follow these steps: — ### **Step 1: Create a Page for Blog Table View** 1. Go to **Pages > Add New** […]

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