Month: August 2025

First screen access buttons

User Fossettscircus Scanner Reload Events Scan result × No scans yet Scan Next or Set Code Manually <script> </script> <script> </script> <script> </script> <script> </script> I want first screen will be Button for Staff access and other is customer access Assistant To create a **first screen with two buttons** — one for **Staff Access** and […]

Onsen UI Conversion Guide

User Fossettscircus Scanner Door Staff Check tickets and manage show entry Access Door System Customer Scan tickets or view upcoming events Continue as Customer Staff Login Login ← Back Reload Events Logout Scan result × No scans yet Scan Next or Set Code Manually <script> </script> <script> </script> <script> </script> <script> </script> <script> </script> convert […]

Generate Feed Command Line

User Ok now I need to generate feed from command line Ability to generate feeds via command-line for scalability in concerete cms is this possilble Assistant Yes, it's **definitely possible** to generate feeds via the **command line in Concrete CMS** using a **custom CLI command**. Concrete CMS uses Symfony's Console component behind the scenes, so […]

Create custom command CMS

User create custom command in concrete cms package 9 Assistant To create a **custom command in a Concrete CMS 9 package**, you need to: 1. **Create the command class** (extends `SymfonyComponentConsoleCommandCommand`) 2. **Register the command** in your package’s `on_start` method using the `ConsoleApplication` binding. — ### ✅ Step-by-step guide #### 📁 Folder structure (example): packages/ […]

Concrete CMS email command

User add command in custom concreter cms package that will send email Assistant To add a custom command in a Concrete CMS 9 package that sends an email, follow these steps: — ### ✅ 1. **Create the Command Class** Create a new class like `SendEmailCommand.php` inside your package, for example in: packages/my_package/src/Command/SendEmailCommand.php <?php namespace ConcretePackageMyPackageCommand; […]

AWS WordPress Email Issue

User AWS wordpress website Error: The email could not be sent. Your site may not be correctly configured to send emails Assistant The error: > **"The email could not be sent. Your site may not be correctly configured to send emails."** means your WordPress site **cannot send emails** from the server. This is a **very […]

Google Pay and Stripe

User We need stripe account or google account to use google pay Assistant To use **Google Pay** in your application, whether through QR code or Tap-to-Pay, here's what you need: — ### ✅ **1. Google Pay API Integration Requirements** You must meet **both** of the following: #### A. **Google Merchant Account (via Google Pay & […]

QR Code Payment Clarity

User I was also think about show qrcode to customer and then pay by their phone, but confused with Tap to Pay Now its clear Correct above Assistant Here’s the corrected version of your sentence: **"I was also thinking about showing a QR code to the customer so they can pay using their phone, but […]

DDEV SEO URL Redirect

User we have set a core php site with ddev and root folder src its using .htaccess for seo urls but when open any url its redircto home page Assistant If your **Core PHP site** is using **DDEV**, has its root folder as `src`, and is using `.htaccess` for SEO-friendly URLs, but all URLs are […]

Order Status Update Process

User below are my understanding for above ​We will create a order section in admin area In which we will display ticket status based on 'order_status' attribute that we are already using. ​Currently by default status is 0 for new orders and It will set to 1 whenever anyone scan from app Correct above sentence […]