Blog

Git clone SSH error

User ubuntu@ip-172-31-30-116:/var/www$ git clone git@bitbucket.org:tiw1988/wp-react.git Cloning into 'wp-react'… The requested repository either does not exist or you do not have access. If you believe this repository exists and you have access, make sure you're authenticated. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. […]

Connect AWS EC2 SSH

User Connect aws ssh Assistant To connect to an AWS EC2 instance via SSH, follow these steps (assuming you're on a local machine like Windows/Linux/macOS and you already have your `.pem` or SSH credentials ready): — ### ✅ **Standard SSH Method (with PEM file)** #### 🧾 Requirements: – EC2 instance is **running** – Security Group […]

Framework7 Toolbar Design

User make framework 7 tool bar like attached Assistant To create a Framework7 toolbar that mimics the style in your screenshot (Fossett's Circus logo, title, and subtitle with a purple gradient background and rounded corners), here's a complete example using Framework7's jQuery flavor: ### ✅ **HTML + Framework7 Toolbar Code** <!– In your main page […]

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