Category: AI Conversations

Add custom link CMS

User we have community sotre in our concrete cms 9 and now I want to add our custom pacakage link to compuntiy store settings section /index.php/dashboard/store/settings Assistant To add your **custom package link** to the **Community Store settings** section (`/index.php/dashboard/store/settings`) in **Concrete CMS 9**, you can use the **Dashboard submenu system**. ### ✅ Step-by-Step: Add […]

Mollie Plugin Update

User For now all WordPress update not needed therir just need to update Mollie payment gateway plugin for now Correct above Assistant Here's the corrected version of your sentence: **"For now, no WordPress updates are needed — only the Mollie payment gateway plugin needs to be updated."** Let me know if you'd like a more […]

Save HPP JSON DB

User Assistant To save the `$hppJson` data into a new WordPress database table named `track_user_orders`, follow these steps: — ### ✅ **Step 1: Create the Table** Use a plugin like **WP phpMyAdmin**, or run the following SQL in your DB admin panel: CREATE TABLE IF NOT EXISTS `track_user_orders` ( `id` INT NOT NULL AUTO_INCREMENT, `order_id` […]

Payment Issue Facebook Origin

User You have mentioned in Fossetts issue that payment problem occur when originate from Facebook. Could you please provide me more detail on it like Is there are direct show book url shared at facebook? Correct above Assistant Here's a corrected and more professional version of your sentence: — You mentioned in the Fossetts issue […]

PostMyMeds Feature Breakdown

User Postmymeds-Feature Listing – Additional Notes Customer (Front-end website) Cookies – this is integrated with third party CookieBot We utilise a 'sticky header' on desktop only ZenDesk – if our enquiries email is out of office they should get an out of hours email response Google CAPTCHA – we have the ability to turn this […]

PostMyMeds Project Breakdown

User Postmymeds Quote break down Customer section(Admin/Front end) ## 80 hours Login/registration/forget password Myaccount (orders,reset password,payment methods,update profile) Ecommerce section 400 hrs product list page,category pages, product detail page, cart page,checkout page and required cart functionality like coupon, discount and payment module Extra highlighted functionality 165 hours 1- New use order notification- 2- Print label […]

Active Show Query Adjustment

User $this->db->select('*'); $this->db->from('events'); $this->db->join('events_dates', 'events.event_id = events_dates.event_id', 'left outer'); $this->db->where('( NOW() Assistant To meet your requirement — **show only the single current or upcoming "active" show that falls within 1 hour before to 1 hour after the showtime**, you can update your query logic as follows: — ### ✅ Modified Code (Only one show within […]

Custom Fields Display Issue

User I've able to show custom fields data in ticket also added Seat in ticket also but event_venue and number_of_seats variable still shown Correct above Assistant Here's the corrected version of your sentence: > I've successfully displayed the custom fields data in the ticket and also added the seat information. However, the `event_venue` and `number_of_seats` […]

React Native Barcode Scan

User Set up react native and create simple project to get event and scan barcode from php Assistant To set up a **React Native** app that gets event data and scans barcodes (communicating with a **PHP backend**), here’s a complete guide: — ### ✅ Step 1: Set Up React Native Environment #### Install Prerequisites: – […]

Previous month dates overflow

User <style> /* Toggle Button */ .toggle-btn { transition: background 0.2s, color 0.2s; } .toggle-btn.active { background: #00c48c !important; color: #fff !important; } /* Calendar Containers */ .weekly-calendar, .monthly-calendar { margin: 30px 0; font-family: Arial, sans-serif; } /* Table Styling */ .weekly-calendar table, .monthly-calendar table { width: 100%; border-collapse: collapse; text-align: center; min-width: 220px; margin-bottom: […]