Blog

App Update and Payment

User here are updated app with staff section integrated in it Currently I added all sections layouts I'll start working on tap and pay payment section in app from monday Currently I'm using static staff login from API.php in boxoffice COrret above sentecne Assistant Here is the corrected version of your message: — Here is […]

Remove JDK Instructions

User remove one jvm Assistant To remove one JDK from the system (assuming this is a Linux system like Ubuntu based on the path style in the screenshot), follow these steps using the terminal: — ### 🔧 **To Remove a Specific JDK (e.g., Java 11 or Java 17):** First, list installed Java versions: sudo update-alternatives […]

Auto load staff events

User $(document).on('click', '.reload-events-staff', function() { f7App.dialog.preloader('Loading events…'); $.ajax({ url: `${ApiUrl}today`, method: 'POST', data: { token: TOKEN }, success: function(result,status,xhr) { console.log(result); var events = JSON.parse(result); if (events.result) { $('.staff-screen ul.events').html(''); const weekday = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]; $.each(events.data, function(i, val) { var eventDatetime = new Date(val.event_datetime); var dateOptions = { year: '2-digit', month: '2-digit', day: '2-digit' }; var […]

Change app release name

User change defeult realse app name Assistant To change the **default release app name** in an Apache Cordova project (the name that appears when the app is installed on the device), follow these steps: — ### ✅ 1. **Change the app name in `config.xml`** Open the `config.xml` file in the root of your Cordova project […]

Add Copy Feed URL

User add copy feed url in feed url input Assistant To add a **"Copy Feed URL"** button next to the Feed URL input that copies the value into the clipboard, you can do this with a bit of HTML and JavaScript. ### ✅ Example Code <div style="display: flex; align-items: center; gap: 10px;"> <input type="text" id="feed-url" […]

Copy URL to Clipboard

User copy to clipboard url js Assistant To copy a URL (or any text) to the clipboard using JavaScript, here's a simple and modern way using the Clipboard API: ### ✅ Basic Example (Copy current page URL): function copyCurrentUrlToClipboard() { const url = window.location.href; navigator.clipboard.writeText(url) .then(() => { alert("URL copied to clipboard!"); }) .catch(err => […]

Red Button Background CSS

User CancelDelete i want second button to background red Assistant To make the second “ have a red background, you can use CSS like this: ### ✅ Option 1: Inline CSS (quick fix) <div class="ui-dialog-buttonset"> <button type="button">Cancel</button> <button type="button" style="background-color: red; color: white;">Delete</button> </div> ### ✅ Option 2: Using a class (recommended for styling consistency) […]

Custom Plugin Menu CMS

User we are usng concrete cms 9 community_store using this I want our custom plugin main menu will listed under community_store menun in dashboard Assistant In Concrete CMS 9, if you're using **Community Store** and you want your **custom package/plugin menu** to appear **under the `Community Store` menu** in the dashboard (e.g., `/dashboard/store/`), you can […]

Dashboard Menu Modification

User Assistant To **remove the main menu entry `/dashboard/shopping_feed` from the sidebar navigation** but **keep the alias under `/dashboard/store/feed` visible**, you should **exclude the original main page from the navigation**, **but not the alias**. Here's the corrected section of your `addDashboardPages()` method: ### ✅ Updated `addDashboardPages()` Logic: protected function addDashboardPages() { $pages = [ '/dashboard/shopping_feed' […]

Available Spots Calendar

User okay so we can display number of avialable spot and then when click we will open calender that we will create in another checkout process to see avialable sport as per date in green. Assistant Got it! Here's a structured plan for what you're describing: — ### ✅ **Feature Overview** **Goal:** Display the **number […]