Blog

ACF Field Group Setup

User Thense default structutre provided by ACF plugin itself , We can find in Wp-admin where this where all these acf field managed. We have created Header,footer and homepage groups Correct above more specific way Assistant Here’s a more polished and specific version of your sentence: > The default structure is provided by the ACF […]

HubSpot Login Request

User a login link for hubspot sent in "mk@plstr.digital" Coud you please provide? Correct above sentence Assistant Sure! Here's the corrected version of your sentence: **"A login link for HubSpot was sent to mk@plstr.digital. Could you please provide it?"**

Multistep Form Styling

User One last query for multistep form from side for today:slightly_smiling_face: I've seen the form at hubspot We just need to spilit out content and styling same as https://all4cloudgroup.com/kontakt-neu/ as per awork Correct above sentence Assistant Sure! Here's a polished version of your sentence: **"One last query about the multi-step form for today 🙂 I've […]

Smooth Scrolling Optimization

User Currently mouse wheel and browser scroll event both running simultaneously when scrolling that area that is why its taking little longer step to slide , for smooth scrolling its neccessary to do like that, Correct above sentence Assistant Sure! Here's a corrected and more polished version of your sentence: > "Currently, both the mouse […]

Firebase Admin Login Vue

User Create an admin login using firebase auth that will be one main admin and when they logged then a notification will show in vue header Assistant To implement a **main admin login** using **Firebase Authentication** and show a **notification in the Vue header when logged in**, follow these steps: — ## ✅ 1. **Set […]

Responsive v-tabs Direction

User make in mbile horizonatal Assistant To make “ **vertical on desktop** and **horizontal on mobile**, you can dynamically change the `direction` based on screen size using Vuetify's built-in `useDisplay()` composable (Vuetify 3). Here’s how to implement that: — ### ✅ Full Example with Responsive Direction <script setup> import { ref, computed } from 'vue' […]

Create plugin log file

User create log file in plugin function like order-log.txt and save some information per line Assistant Here's a practical and clean approach to creating a log file (`order-log.txt`) in your WordPress plugin to store log data line-by-line. You can integrate the following helper function into your plugin: ### Step-by-step guide: **1. Create the helper function […]

PHP Order Details

User Assistant Sure! Here's the **cleaned-up version** of your PHP code where all HTML is placed **outside of `echo`**, using regular PHP and “ short tags for inline values: <?php defined('ABSPATH') || exit; global $wpdb; $order_id = isset($order_id) ? intval($order_id) : 0; $user_id = get_current_user_id(); $order = $wpdb->get_row($wpdb->prepare( "SELECT o.* FROM {$wpdb->prefix}posts_archive o JOIN {$wpdb->prefix}postmeta […]

HubSpot Formular Anpassung

User <style> .hub-multistep-btn { background-color: #00b4d5; border-radius: 25px; font-weight: 600; min-height: 40px; cursor: pointer; width: 100%; font-size: 15px; text-align: center; transition: all .3s; fill: #fff; } #step-progress { margin: 20px 0; text-align: center; display: flex; justify-content: space-between; align-items: center; } .step-indicator { display: inline-block; width: 30px; height: 30px; line-height: 30px; border-radius: 50%; margin: 0 5px; […]

Multiple Click Issue Fix

User $("#hsspp").click(function() { let count = 0; const checkoutClickInterval = setInterval(()=>{ count++; const hasError = checkForError(); if( hasError || count == 15 ){ console.log('clicking'); destroyCheckoutClickInterval(); }else{ if( $('#hsspp[disabled]').length == 0 ){ document.getElementById("hsspp").click() } } },700); function destroyCheckoutClickInterval(){ clearInterval(checkoutClickInterval); } console.log('custom jquery'); var frmresult=checkVariantValid(); if ( ! frmresult ) { return false; } checkdActiveSubmit(); $('.sendprocess').show(); var […]