Blog

Override YITH Plugin Template

User overrride yith premium booking plugin template in a custom theme Assistant To **override a template from the YITH WooCommerce Booking Premium plugin** in your **custom WordPress theme**, follow these steps carefully: — ### ✅ Step-by-Step Guide #### 1. **Locate the Plugin Template File** Go to the plugin directory: wp-content/plugins/yith-woocommerce-booking-premium/templates/ For example, if you want […]

Enable proxy setup

User how to enable the proxy Assistant To enable a proxy, the method depends on **where** you're trying to enable it (e.g. system-wide, browser, terminal, development tool, etc.). Here's a breakdown of how to enable a proxy in common environments: — ### ✅ **1. System-Wide (Windows)** **Windows 11 / 10:** 1. Go to **Settings > […]

Create custom page CMS

User Create a custom page with controller and manable from cms in silverstripe cms6 Assistant To create a **custom page with a controller** that is **manageable from the CMS** in **Silverstripe CMS 6**, follow these steps: — ### ✅ 1. **Create the Page Type (Model)** Create a PHP file named `CustomPage.php` inside `app/src/PageTypes/` or `app/src/Pages/` […]

SeatInfo Google Wallet API

User seatInfo google wallet api detail for seat position like ringside or other Assistant In the **Google Wallet API for Event Tickets**, if you want to include **seat-related information** like "Ringside", "Section", "Row", or "Seat Number", you need to use the `seatInfo` object inside the **EventTicketObject**. ### ✅ `seatInfo` structure "seatInfo": { "seat": { "defaultValue": […]

SilverStripe 404 Fix

User Sliver stripe custom page gives 404 error Assistant If your **custom page in SilverStripe** is returning a **404 error**, it typically means SilverStripe can't find a matching route or controller. Here's a checklist to debug and fix it: — ### ✅ **1. Custom Page Type: Ensure it’s properly defined** **Custom Page Class: `MyPage.php`** <?php […]

FCPATH in CodeIgniter

User constant FCPATH in codeignter Assistant In CodeIgniter (especially in **CodeIgniter 3**), the constant `FCPATH` stands for **"Front Controller Path"**. ### 📌 What is `FCPATH`? `FCPATH` is a predefined constant in CodeIgniter that gives the **full server path to the `index.php`** file (the front controller of the application). ### ✅ Example: If your project is […]

Override YITH Template

User over ride yith-woocommerce-booking-premium template in our theme Assistant To override a template from the **YITH WooCommerce Booking Premium** plugin in your theme, follow these steps: — ### ✅ 1. **Locate the Plugin Template** Inside the plugin directory, navigate to: wp-content/plugins/yith-woocommerce-booking-premium/templates/ You'll find all the template files there (e.g. `single-booking.php`, `booking-form/date-picker.php`, etc.). — ### ✅ […]

Google Wallet Ticket Creation

User Assistant To create a **Google Wallet EventTicketClass** manually using PHP (only once per event), you'll need to make a POST request to the Google Wallet API before generating the ticket object. — ### ✅ Add Class Creation Logic (only once per event) Here’s how to **create the EventTicketClass** before issuing the ticket: — ### […]

Create Cordova Plugin

User create simple cordova plugin and give me folder Assistant Creating a **simple Cordova plugin** involves setting up a folder structure with a `plugin.xml` file, JavaScript interface, and native code (e.g., Android Java). Below is a **basic example Cordova plugin** named `cordova-plugin-echo` which simply echoes back a string. — ### ✅ Folder Structure: cordova-plugin-echo/ ├── […]

Cordova Stripe Tap Pay

User Create apache cordova app for Stripe tap and pay for accept payment by tap and pay, we are using framework 7 and jquery Assistant To create an **Apache Cordova app for Stripe Tap to Pay** (for Android), using **Framework7** and **jQuery**, follow this **step-by-step guide**. This setup will allow shopkeepers to accept payments using […]