Month: August 2025

Trigger events on page load

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 […]

Framework7 jQuery Cordova Setup

User Write way to include framework 7 with jquery and apache cordova Also use pages Assistant Here’s the proper way to **include Framework7 with jQuery inside an Apache Cordova app**, and use **pages** for navigation (using the Core/jQuery version of Framework7): — ### ✅ Folder Structure (Recommended) www/ ├── css/ │ └── framework7.bundle.min.css ├── js/ […]

BMI Calculator in GF

User – Regarding the example of the BMI calculator, we will have one question that says enter your weight (the user should be able to select the metrics they are using e.g. kg or stones/pounds) and another question to allow the user should be able to enter their height (in cm or feet/inches). – We […]

Disable AWS search logic

User $page_object = get_queried_object(); $page_id = get_queried_object_id(); if(get_field('is_hide_instant_search',$page_id)){ $is_hide_instant_search = get_field('is_hide_instant_search',$page_id); } else { $is_hide_instant_search = 0; } if ( get_post_type() === 'lp' || $is_hide_instant_search == 1 ) { return; } How to apply above condition in Advanced Woo Search PRO Assistant To apply the condition from your custom code to **Advanced Woo Search PRO**, […]

Probo Configurable Product Type

User Add new WooCommerce product type ‘Probo Configurable Product’ • There should be a new WooCommerce product type named ‘Probo Configurable Product’. • In the Probo Connect tab should be the following changeable settings: ◦ Api code ◦ Surcharge margin ◦ Advanced JSON overwrite for the configurator. Proof of concept: Render product configurator in the […]

Flatsome Checkout Customization

User Flatsome wordpress theme customize checkout page woocommerce Assistant To **customize the WooCommerce checkout page** in the **Flatsome** WordPress theme, you have several flexible options depending on how deeply you want to customize. Here's a step-by-step guide for different levels of customization: — ### ✅ 1. **Use Flatsome UX Builder (for basic layout adjustments)** Flatsome […]

Customize WooCommerce Checkout Layout

User do_action( 'woocommerce_checkout_order_review' ); separate payment and shipping from there and move to left side below billing/shipping address Assistant To move **payment** and **shipping methods** from the default `do_action( 'woocommerce_checkout_order_review' )` section to the **left side** (under billing/shipping address), and leave only **order summary** on the right, follow these steps: — ### ✅ 1. **Override […]

Display Delivery Fee WooCommerce

User display delivery options like delivery fee – fee before subtotal if no shiiping apply then show delivery frere in woocommerce Assistant To display **“Delivery Fee”** before the subtotal in WooCommerce and show **“Delivery Free”** if no shipping methods apply, you can hook into WooCommerce's cart totals template. ### ✅ Final Output Example Delivery Fee: […]

Tap to Pay Setup

User I think one more thing needs to do after I have tap to pay ready to register android devices which need to act like hardware terminal Correct above sentence Assistant Sure! Here's the corrected version of your sentence: **"I think one more thing needs to be done after setting up Tap to Pay — […]

Stripe Tap to Pay Integration

User There is new functionality from Stripe that turns the Shop Keepers app into a terminal. Its called Tap To Pay I have currently Framework 7 and jquery apace cordova powered app backend is codeignter and payment site is stripe Assistant Great! Since you're using **Apache Cordova** with **Framework7 + jQuery**, a **CodeIgniter backend**, and […]