Month: August 2025

Google Pay standalone button

User Woocomerce Paypal checkout plugin We have enabled google pay option but I want to display it standlone MEans no required check paypla radio button Assistant Got it — you’re using the **WooCommerce PayPal Checkout / PayPal Payments** plugin, and you want Google Pay to show as a **standalone** payment button without requiring the PayPal […]

WordPress line breaks issue

User I am not able to handle simple alinea's with white spaces anymore as reguliar with wordpress. It seems to that a regular line break is not possible anymore? what does mean ? Assistant Gotcha—by “alinea” you mean a paragraph. In WordPress: – **Enter** creates a new **paragraph** (adds `…`). – **Shift+Enter** creates a **soft […]

P1 vs P2 comparison

User Whsts the difference between p1 and p2 , just asking Assistant In most project or ticket systems: – **P1 (Priority 1)** – Critical issue, blocks major functionality, needs immediate attention, usually worked on ASAP. – **P2 (Priority 2)** – High priority but not a complete blocker, important to fix soon, but can wait until […]

Set checkout date

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

Multi-date selection setup

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

Update field validation

User $('.gfield_choice:not(:last) label').on('click', function () { $(this).siblings('input').trigger('click'); // update GF conditional logic first var $scrollTo = null; var $sourceBlockEl = $(this).closest('.gfield'); var $nextBlockEl = $sourceBlockEl.next(); var headerHeight = $('#et_mobile_nav_menu').is(':visible') ? 0 : $('#et-main-area').offset().top; // Only treat as "correct" if not flagged incorrect AND gating allows var isCorrectClick = ((($(this).attr('onclick') || '').indexOf('incorrect') === -1) && (typeof […]

Scroll to required question

User $('.gfield_choice:not(:last) label').on('click', function() { $(this).siblings('input').trigger('click'); // update GF conditional logic first var scrollToEl = ''; var $sourceBlockEl = $(this).closest('.gfield'); var $nextBlockEl = $sourceBlockEl.next(); var headerHeight = $('#et_mobile_nav_menu').is(':visible') ? 0 : $('#et-main-area').offset().top; // Only treat as "correct" if not flagged incorrect AND gating allows var isCorrectClick = ((($(this).attr('onclick') || '').indexOf('incorrect') === -1) && (isOverride || […]

Fixing GF scroll logic

User $('.gfield_choice:not(:last) label').on('click', function() { $(this).siblings('input').trigger('click'); // update GF conditional logic first var scrollToEl = ''; var $sourceBlockEl = $(this).closest('.gfield'); var $nextBlockEl = $sourceBlockEl.next(); var headerHeight = $('#et_mobile_nav_menu').is(':visible') ? 0 : $('#et-main-area').offset().top; // Only treat as "correct" if not flagged incorrect AND gating allows var isCorrectClick = ((($(this).attr('onclick') || '').indexOf('incorrect') === -1) && (isOverride || […]

Code fix and improvements

User Assistant You’re skipping optional questions because of **two things**: a typo and a required-only selector. – Bug: `.legnth` → **`.length`** (this prevents the “next unanswered” detection from working). – Logic: you scan only `'.gfield_contains_required:visible'`, so optional fields get skipped. Scan **all visible question fields** instead. Drop-in fix (keeps everything else the same): <?php if […]