Month: August 2025

Send QR as Attachment

User function sendCustomerEmail($order_info) { $qrText =$order_info->order_code; $qrFilePath = __DIR__ . '/../boxoffice/fossetts_admin/tickets/'.$qrText.'.png'; $qrFileUrl = 'boxoffice/fossetts_admin/tickets/'.$qrText.'.png'; // Production – use PHPMailer $mail = new PHPMailer(true); try { $mail->isSMTP(); $mail->Host = 'mail.fossettscircus.com'; $mail->SMTPAuth = true; $mail->Username = 'no-reply@fossettscircus.com'; $mail->Password = 'OarNSHeCPPI%OarNSHeCPPI%'; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; // Add permissive SMTP options to bypass hostname validation $mail->SMTPOptions = […]

Newsletter Template Design Request

User I specifically said I am not talking about the newsletter FORM, I am talking about the actual newsletter template in Sengrid. NOT the form on the website, which is perfect as it is. I am talking about a design for a newsletter which we can send in Sendgrid. The actual newsletter. The actual design. […]

Remove Quantity Buttons WC

User update quantity input to remve + – woocommerce Assistant To remove the **plus (+)** and **minus (−)** buttons from the quantity input in **WooCommerce**, you can use a combination of **CSS** or **filtering WooCommerce templates**, depending on your theme or setup. — ### ✅ Option 1: Remove +/− via CSS (Quickest Way) Add the […]

Open Configurator in Modal

User <script> assets/src/connect-product-configurator.js" rel="text/javascript" > </script> I want to open configurator in modal Assistant To open the Probo Configurator in a modal instead of displaying it directly, you'll need to: 1. Hide the “ initially. 2. Trigger it via a modal when the "Customize product" button is clicked. 3. Load it only once inside the […]

ACF Repeater Subfields Issue

User Repeater sub fileds showing in add/edit product page but not in acf field, grup Assistant From your screenshot, you're using **ACF (Advanced Custom Fields)** with a **Repeater Field** named `upsell_products`, and you've set a maximum of 2 rows. However, you're facing the issue: > **Repeater subfields are showing on the Add/Edit Product page, but […]

Variation Upsells WooCommerce

User This feature is great, but the current issue is that we can only select 'simple' products to upsell and can not select a specific 'variation' product. Therefore e.g. for our Vitality CBD variable product, we are currently unable to up-sell any variation of this product as it comes in different 'dosages' and 'flavour' so […]

Order status usage clarification

User Okay from staff side the same order_status will use Correct Assistant Your sentence can be made clearer and grammatically correct like this: **"Okay, from the staff side, the same `order_status` will be used."** Let me know if you'd like it reworded more formally or casually.

Dropdown image load fix

User function prof_display_similar_products_from_subcategory() { global $product; if (!$product || !is_a($product, 'WC_Product')) { return; } $similar_products = prof_get_similar_products_from_subcategory($product->get_id()); if (empty($similar_products)) { return; // No similar products found } //$max_display = 4; // Limit for displayed products $product_count = count($similar_products); // Function to fetch Linguise translated URLs function prf_get_linguise_translated_url($source_link) { global $wpdb; $source_path = rtrim(str_replace(wp_parse_url(site_url(), PHP_URL_PATH), '', […]

Task Interface Error Fix

User ConcreteCoreCommandTaskRunnerCommandTaskRunner::__construct(): Argument #1 ($task) must be of type ConcreteCoreCommandTaskTaskInterface, ConcretePackageShoppingFeedManagerCommandGenerateMerchantFeedCommand given, called in /var/www/html/packages/shopping_feed_manager/src/Command/Task/Controller/GenerateMerchantFeedController.php on line 33 Assistant The error you're encountering: ConcreteCoreCommandTaskRunnerCommandTaskRunner::__construct(): Argument #1 ($task) must be of type ConcreteCoreCommandTaskTaskInterface, ConcretePackageShoppingFeedManagerCommandGenerateMerchantFeedCommand given means you're passing a `Symfony Command` (i.e., `GenerateMerchantFeedCommand`) where Concrete CMS expects a `ConcreteCoreCommandTaskTaskInterface`. — ### 🔍 What's the problem? Concrete […]

Concrete Task Manager Inquiry

User Use Concrete task managwer Assistant Could you please clarify what you mean by **"Concrete task manager"**? Do you mean: 1. A **task management system built in Concrete CMS** (like a custom package)? 2. The **Task process system** in Concrete CMS (e.g., tasks run via `bin/concrete c5:tasks` command)? 3. A **custom task manager app** you're […]