Skip to main content

Posts

Ecommerce WordPress Website

Here’s a clear, beginner-friendly step-by-step guide to create an e-commerce website using Odoo πŸ‘‡ πŸ›’ STEP 1: Create Your Odoo Account Go to Odoo website Click “Start now” Enter: Email Password Company name πŸ‘‰ Choose Website + eCommerce module during setup 🌐 STEP 2: Create Your Website After login → Go to Website app Click “Create Website” Select: Business type (e.g., Retail, Fashion, Electronics) Choose a theme πŸ‘‰ Your website is auto-created πŸŽ‰ 🎨 STEP 3: Design Your Homepage Click Edit (top right) Use drag-and-drop blocks: Banner (add offer or brand message) Product showcase Categories Footer πŸ‘‰ Click on any text → edit directly πŸ“¦ STEP 4: Add Products Go to Website → Products → Add Product Fill details: Product Name Price Upload images Description Optional: Variants (size, color) Stock quantity πŸ‘‰ Click Save πŸ—‚️ STEP 5: Create Product Categories Go to Products → Categories Click Create Add categories like: Men Women Electronics πŸ‘‰ Helps customers browse easily πŸ’³ STEP 6: Set Up...
Recent posts

Odoo E-commerce website

Here’s a clear, beginner-friendly step-by-step guide to create an e-commerce website using Odoo πŸ‘‡ πŸ›’ STEP 1: Create Your Odoo Account Go to Odoo website Click “Start now” Enter: Email Password Company name πŸ‘‰ Choose Website + eCommerce module during setup 🌐 STEP 2: Create Your Website After login → Go to Website app Click “Create Website” Select: Business type (e.g., Retail, Fashion, Electronics) Choose a theme πŸ‘‰ Your website is auto-created πŸŽ‰ 🎨 STEP 3: Design Your Homepage Click Edit (top right) Use drag-and-drop blocks: Banner (add offer or brand message) Product showcase Categories Footer πŸ‘‰ Click on any text → edit directly πŸ“¦ STEP 4: Add Products Go to Website → Products → Add Product Fill details: Product Name Price Upload images Description Optional: Variants (size, color) Stock quantity πŸ‘‰ Click Save πŸ—‚️ STEP 5: Create Product Categories Go to Products → Categories Click Create Add categories like: Men Women Electronics πŸ‘‰ Helps customers browse easily πŸ’³ STEP 6: Set Up...

πŸ”₯ “Asking for Last CTC? Many Candidates See It as a Red Flag.”

πŸ”₯  “Asking for Last CTC? Many Candidates See It as a Red Flag.” “What is your Last CTC?” This question might look normal in recruitment. But today, for many professionals, it has become one of the biggest red flags in hiring. Why? Because it sends a message — “Your future salary will depend on your past salary.” And that’s where candidates feel deeply offended. A person’s last CTC can reflect many things: • Being underpaid in a previous job • Staying loyal to one company for years • Startup salary limitations • Early career negotiation mistakes But none of these define their real value today. So candidates start asking themselves: “Why should I disclose my last CTC?” “Is my worth decided by an old number?” For many professionals, it becomes a matter of dignity and professional pride. And once that dignity feels compromised: Candidates don’t argue. They don’t complain. They simply stop responding. Sometimes not just to the recruiter — but to that company forever. ⚠️ Candidates: If ...

Premium Mentorship Program in Content Creation and Digital Entrepreneurship, mentored by Hukumchand Dedhia.

Dear Sir/Madam, Greetings. We are pleased to announce the pre-launch of a Premium Mentorship Program in Content Creation and Digital Entrepreneurship , mentored by Hukumchand Dedhia. Program Key Highlights • Offline mentorship with limited seats • 9 months dedicated learning with support up to 18 months • Approx 250–300 hours of guided sessions • 5 hours weekly learning format • Theory + practical execution • Portfolio development and evaluation • Exposure to content creation, advertising, digital marketing, and digital products • No recorded lectures – fully interactive sessions • Easy-paced learning with peer collaboration • Opportunity to repeat fundamental modules with future batches This program focuses on real skill development, confidence building, leadership mindset, and entrepreneurial thinking . It is important to note that this is not a quick money-making or job guarantee course , but a mentorship designed to help participants become market-ready through practical skills...

Google site with ready-to-use product grid layout

Perfect! Let’s create a ready-to-use product grid layout for your Anushka Jewels Google Sites that works with your existing order form. This will make your catalog look like a professional online store and link directly to your order form. Sample Product Grid Layout (HTML + CSS) <div style="max-width:1000px; margin:auto; font-family:sans-serif;"> <h2 style="text-align:center;">Our Featured Jewelry</h2> <div style="display:flex; flex-wrap:wrap; gap:20px; justify-content:center;"> <!-- Product 1 --> <div style="border:1px solid #ccc; border-radius:8px; padding:10px; width:200px; text-align:center;"> <img src="https://via.placeholder.com/180x180" alt="Gold Ring" style="width:100%; border-radius:5px;"> <h3>Gold Ring</h3> <p>Code: GR01</p> <p>Price: ₹2,500</p> <a href="#orderForm" style=...

Google site with mini e-commerce with QR pay

Perfect! Let’s upgrade your order form so the user can calculate totals AND pay instantly via UPI QR or Razorpay link — all embedded in the same Google Sites page. Here’s a ready-to-use HTML + JS snippet: HTML + JavaScript Order Form with Payment <div style="max-width:500px; margin:auto; font-family:sans-serif;"> <h3>Place Your Order</h3> <table id="orderTable" style="width:100%; border-collapse: collapse;"> <tr> <th style="border-bottom:1px solid #ccc;">Product Code</th> <th style="border-bottom:1px solid #ccc;">Quantity</th> <th style="border-bottom:1px solid #ccc;">Price (₹)</th> <th style="border-bottom:1px solid #ccc;">Subtotal (₹)</th> </tr> <tr> <td><input type="text" class="pcode" placeholder="GR01"></td> <td><...

Google site with mini e-commerce features

Perfect! You want a self-contained order form on your site where the user enters Product Code, Quantity, and Price , and the total amount is automatically calculated using embedded HTML + JavaScript. Here’s a clean solution you can embed directly into Google Sites. HTML + JavaScript Order Form <div style="max-width:500px; margin:auto; font-family:sans-serif;"> <h3>Place Your Order</h3> <table id="orderTable" style="width:100%; border-collapse: collapse;"> <tr> <th style="border-bottom:1px solid #ccc;">Product Code</th> <th style="border-bottom:1px solid #ccc;">Quantity</th> <th style="border-bottom:1px solid #ccc;">Price (₹)</th> <th style="border-bottom:1px solid #ccc;">Subtotal (₹)</th> </tr> <tr> <td><input type="text" class="pcode" placeholder=...