Blog

Vue to Laravel Inertia

User convert standalone vue js to laravel interia js vue Assistant To convert a standalone Vue.js app into a Laravel + Inertia.js + Vue setup, you’ll need to integrate your Vue components into Laravel’s Inertia flow. Here's a step-by-step guide to help you migrate: — ### ✅ 1. **Setup Laravel with Inertia and Vue** If […]

Yarn dependencies conversion

User convert all of this "dependencies": { "@mdi/font": "^7.4.47", "@vueup/vue-quill": "^1.2.0", "apexcharts": "^4.5.0", "axios": "^1.8.1", "firebase": "^11.4.0", "firebase-admin": "^13.2.0", "nprogress": "^0.2.0", "pinia": "^3.0.1", "vee-validate": "^4.15.0", "vue": "^3.5.13", "vue-router": "^4.5.0", "vue-tabler-icons": "^2.21.0", "vue3-apexcharts": "^1.8.0", "vue3-perfect-scrollbar": "^2.0.0", "vue3-print-nb": "^0.1.4", "vuetify": "^3.7.15" }, to yarn command Assistant Here’s how you can convert your `dependencies` block into a single […]

Enqueue Google Fonts WP

User register this via enqueue wordpress Assistant To register and enqueue the Google Fonts (Poppins) in WordPress using `wp_enqueue_style`, you can add the following code to your theme’s `functions.php` file (or inside your custom plugin or enqueue file): function custom_enqueue_google_fonts() { // Preconnect for faster font loading echo '<link rel="preconnect" href="https://fonts.googleapis.com">' . "n"; echo '<link […]

HubSpot Webinar Access Issue

User I’ve reviewed the requirement and understand the issue that If Hubspot setting not active in a webinar then that webinar will be directily availlabe for view without any restrictions .and the that currenly comes in case of disabled hubspot will remove Correct above sentence Assistant Sure! Here's the corrected version of your sentence: "I’ve […]

Fixing Font Size Conflict

User <style> @font-face { src: url('https://res.cloudinary.com/dr6lvwubh/raw/upload/v1529908256/CompressaPRO-GX.woff2'); font-family:'Compressa VF'; font-style: normal; } .fit-container h1 { font-family:'Compressa VF'; text-rendering: optimizeSpeed; /* width: 100%;*/ user-select: none; line-height: 0.8em; margin: 0 auto; text-transform: uppercase; font-weight: 100; text-align: center; /* width: 100vw;*/ } .fit-container h1 span { transform: translateY(-10px); user-select: none; font-family:'Compressa VF'; } .fit-container h1.flex { display: flex; justify-content: […]

Font Size Scaling Fix

User var maxDist; var mouse = { x: 0, y: 0 }; var cursor = { x: window.innerWidth, y: window.innerHeight }; Math.dist = function(a, b) { var dx = b.x – a.x; var dy = b.y – a.y; return Math.sqrt(dx * dx + dy * dy); } window.addEventListener("mousemove", function(e) { cursor.x = e.clientX; cursor.y = […]

Font Animation Effects

User <script> var maxDist; var mouse = { x: 0, y: 0 }; var cursor = { x: window.innerWidth, y: window.innerHeight }; Math.dist = function(a, b) { var dx = b.x – a.x; var dy = b.y – a.y; return Math.sqrt(Math.pow(dx, 2), Math.pow(dy, 2)); } window.addEventListener("mousemove", function(e) { cursor.x = e.clientX; cursor.y = e.clientY; }); […]

Sage Pay Plugin Transition

User Yes I have suggested that Sage pay will not provide their upgraded version as they are depercating their plugin for future and they have suggested that elvan plugin But when I gone through the new plugin requirment it seems it is a completely different from currently sage plugin .and it will take time to […]

Multiple Widget Instances

User <style> @font-face { src: url('https://res.cloudinary.com/dr6lvwubh/raw/upload/v1529908256/CompressaPRO-GX.woff2'); font-family:'Compressa VF'; font-style: normal; } #fit h1 { font-family:'Compressa VF'; text-rendering: optimizeSpeed; /* width: 100%;*/ user-select: none; line-height: 0.8em; margin: 0 auto; text-transform: uppercase; font-weight: 100; text-align: center; /* width: 100vw;*/ } #fit h1 span { transform: translateY(-10px); user-select: none; font-family:'Compressa VF'; } #fit h1.flex { display: flex; justify-content: […]

Remove Git Origin

User remove origin git Assistant To remove the `origin` remote from your Git repository, run the following command in your project directory: git remote remove origin You can verify it's removed by running: git remote -v If you see no output, it means `origin` has been successfully removed. Let me know if you want to […]