Blog

Mobile site speed tips

User We have added rocket plugin and also setup cloudflare in a worpdress site but still mobile site speed is less tha 50 in pagespeedinsight Assistant Got it. WP Rocket + Cloudflare is a solid start, but mobile // functions.php add_filter('wp_get_attachment_image_attributes', function($attr) { if (is_front_page() || is_singular()) { $attr['fetchpriority'] = 'high'; $attr['decoding'] = 'async'; } […]

WordPress editor space issue

User WordPress admin page wp editor not creating space when press enter Assistant Got it—this is usually one of two things: 1) **Editor is creating new paragraphs, but there’s no visible space** (CSS reset in the editor). 2) **Editor isn’t creating “ at all** (TinyMCE/Gutenberg config changed). Do this fast check: – Switch to **Code […]

Polylang admin ajax issue

User Polylang wordpress default set FR for admin and site But when admin logged in and we opned page like /en/event and perform ajax call from a tabl in this page polylang cookie set language FR even we swithced the labguge rto en but same condition when we open same page without admin login then […]

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