Month: March 2025

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

Vue Firebase Portfolio Integration

User use firebase cloud store to add pordfolio items from vue application data will be titile description url and image create add/fetch operations Assistant Here's a complete example of how to **add** and **fetch portfolio items** using **Firebase Firestore** and **Firebase Storage** in a **Vue 3** application. — ### ✅ Prerequisites 1. Set up Firebase […]

Fetch Portfolio by UserID

User export const fetchPortfolioItems = async () => { try { const snapshot = await getDocs(portfolioCollection) return snapshot.docs.map(doc => ({ id: doc.id, …doc.data(), })) console.log('Fetched items:', snapshot); } catch (error) { console.error('Error fetching portfolio items:', error) return [] } } Fetch Portfolio items based on user_id Assistant To fetch portfolio items based on `user_id`, you […]

Pinia store usage error

User pinia.js?v=a45335ab:1299 Uncaught Error: [🍍]: "getActivePinia()" was called but there was no active Pinia. Are you trying to use a store before calling "app.use(pinia)"? See https://pinia.vuejs.org/core-concepts/outside-component-usage.html for help. This will fail in production. at useStore (pinia.js?v=a45335ab:1299:13) at myPortfolio.ts:3:19 Assistant This error usually occurs when you try to use a Pinia store **outside of a Vue […]

WordPress Theme Request

User Generate wordpress theme give zip file Assistant Sure! I can generate a basic custom WordPress theme for you as a ZIP file. Before I do that, could you please confirm a few details: 1. **Theme Name** – What would you like to name the theme? 2. **Theme Type** – Basic blog, business site, portfolio, […]

Enable reCAPTCHA default behavior

User I think client want to enable recatpcha on whenever required otherwise want to by default disable for live site Correct above sentence Assistant Sure! Here's a corrected version of your sentence: **"I think the client wants to enable reCAPTCHA only when required; otherwise, it should be disabled by default on the live site."** Let […]

Multiple Widget Instances Fix

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; color: #b6e925; /* 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: […]

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; color: #b6e925; /* 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: […]

Multiple Widget Instances Fix

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; color: #b6e925; /* 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: […]