@mohasinac/appkit 2.7.53 → 2.7.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
- package/dist/_internal/server/jobs/core/auctionSettlement.js +6 -3
- package/dist/_internal/server/jobs/core/bundleStockSync.js +9 -7
- package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +12 -3
- package/dist/_internal/server/jobs/core/onProductStockChange.js +12 -13
- package/dist/_internal/server/jobs/core/onProductWrite.js +1 -3
- package/dist/_internal/server/jobs/handlers/onProductStockChange.js +11 -2
- package/dist/client.d.ts +2 -0
- package/dist/client.js +1 -0
- package/dist/constants/field-names.d.ts +4 -3
- package/dist/constants/field-names.js +8 -8
- package/dist/errors/error-codes.d.ts +3 -0
- package/dist/errors/error-codes.js +3 -0
- package/dist/errors/messages.d.ts +3 -0
- package/dist/errors/messages.js +3 -0
- package/dist/features/admin/types/product.types.d.ts +1 -1
- package/dist/features/admin/types/product.types.js +2 -3
- package/dist/features/auctions/actions/bid-actions.d.ts +9 -0
- package/dist/features/auctions/actions/bid-actions.js +61 -0
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +2 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +5 -4
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -1
- package/dist/features/auctions/components/PlaceBidFormClient.js +32 -2
- package/dist/features/auctions/types/index.d.ts +1 -1
- package/dist/features/layout/AppLayoutShell.js +1 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -11
- package/dist/features/products/api/[id]/route.js +4 -8
- package/dist/features/products/api/route.js +1 -3
- package/dist/features/products/components/AuctionsIndexListing.js +3 -11
- package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -10
- package/dist/features/products/components/ProductFilters.d.ts +33 -9
- package/dist/features/products/components/ProductFilters.js +6 -29
- package/dist/features/products/components/ProductForm.js +2 -3
- package/dist/features/products/constants/sieve.d.ts +162 -0
- package/dist/features/products/constants/sieve.js +95 -0
- package/dist/features/products/repository/products.repository.d.ts +5 -0
- package/dist/features/products/repository/products.repository.js +23 -3
- package/dist/features/products/schemas/firestore.d.ts +4 -4
- package/dist/features/products/schemas/firestore.js +2 -3
- package/dist/features/products/schemas/index.d.ts +6 -6
- package/dist/features/products/schemas/index.js +2 -6
- package/dist/features/products/types/index.d.ts +1 -1
- package/dist/features/seller/actions/offer-actions.js +2 -2
- package/dist/features/wishlist/types/index.d.ts +1 -1
- package/dist/index.d.ts +6 -3
- package/dist/index.js +6 -4
- package/dist/seed/addresses-seed-data.d.ts +2 -18
- package/dist/seed/addresses-seed-data.js +137 -203
- package/dist/seed/bids-seed-data.d.ts +2 -8
- package/dist/seed/bids-seed-data.js +172 -648
- package/dist/seed/blog-posts-seed-data.d.ts +0 -5
- package/dist/seed/blog-posts-seed-data.js +341 -596
- package/dist/seed/carousel-slides-seed-data.d.ts +0 -5
- package/dist/seed/carousel-slides-seed-data.js +61 -192
- package/dist/seed/carousels-seed-data.js +18 -1
- package/dist/seed/cart-seed-data.d.ts +1 -18
- package/dist/seed/cart-seed-data.js +116 -293
- package/dist/seed/categories-seed-data.d.ts +0 -6
- package/dist/seed/categories-seed-data.js +1409 -1537
- package/dist/seed/claimed-coupons-seed-data.d.ts +0 -11
- package/dist/seed/claimed-coupons-seed-data.js +32 -29
- package/dist/seed/conversations-seed-data.d.ts +0 -6
- package/dist/seed/conversations-seed-data.js +132 -280
- package/dist/seed/coupon-usage-seed-data.d.ts +0 -16
- package/dist/seed/coupon-usage-seed-data.js +30 -44
- package/dist/seed/coupons-seed-data.d.ts +0 -6
- package/dist/seed/coupons-seed-data.js +141 -489
- package/dist/seed/events-seed-data.d.ts +0 -6
- package/dist/seed/events-seed-data.js +201 -379
- package/dist/seed/faq-seed-data.d.ts +0 -14
- package/dist/seed/faq-seed-data.js +609 -1184
- package/dist/seed/grouped-listings-seed-data.d.ts +119 -8
- package/dist/seed/grouped-listings-seed-data.js +148 -233
- package/dist/seed/history-seed-data.d.ts +0 -7
- package/dist/seed/history-seed-data.js +50 -54
- package/dist/seed/homepage-sections-seed-data.d.ts +0 -5
- package/dist/seed/homepage-sections-seed-data.js +83 -175
- package/dist/seed/index.d.ts +1 -1
- package/dist/seed/index.js +1 -1
- package/dist/seed/manifest.js +2 -2
- package/dist/seed/notifications-seed-data.d.ts +0 -6
- package/dist/seed/notifications-seed-data.js +309 -196
- package/dist/seed/offers-seed-data.d.ts +0 -8
- package/dist/seed/offers-seed-data.js +118 -197
- package/dist/seed/orders-seed-data.d.ts +2 -8
- package/dist/seed/orders-seed-data.js +248 -1510
- package/dist/seed/payouts-seed-data.d.ts +0 -6
- package/dist/seed/payouts-seed-data.js +102 -441
- package/dist/seed/products-auctions-seed-data.d.ts +1 -14
- package/dist/seed/products-auctions-seed-data.js +612 -1084
- package/dist/seed/products-preorders-seed-data.d.ts +119 -14
- package/dist/seed/products-preorders-seed-data.js +154 -455
- package/dist/seed/products-standard-seed-data.d.ts +1 -15
- package/dist/seed/products-standard-seed-data.js +1355 -4128
- package/dist/seed/reviews-seed-data.d.ts +2 -8
- package/dist/seed/reviews-seed-data.js +99 -1182
- package/dist/seed/scammers-seed-data.d.ts +0 -15
- package/dist/seed/scammers-seed-data.js +36 -37
- package/dist/seed/sessions-seed-data.d.ts +0 -13
- package/dist/seed/sessions-seed-data.js +58 -335
- package/dist/seed/site-settings-seed-data.d.ts +0 -4
- package/dist/seed/site-settings-seed-data.js +61 -52
- package/dist/seed/store-addresses-seed-data.js +27 -151
- package/dist/seed/store-extensions-seed-data.d.ts +0 -7
- package/dist/seed/store-extensions-seed-data.js +147 -261
- package/dist/seed/stores-seed-data.d.ts +0 -5
- package/dist/seed/stores-seed-data.js +222 -184
- package/dist/seed/sub-listings-seed-data.d.ts +119 -0
- package/dist/seed/sub-listings-seed-data.js +447 -0
- package/dist/seed/support-tickets-seed-data.d.ts +0 -7
- package/dist/seed/support-tickets-seed-data.js +82 -75
- package/dist/seed/users-seed-data.d.ts +0 -5
- package/dist/seed/users-seed-data.js +279 -634
- package/dist/seed/wishlists-seed-data.d.ts +0 -9
- package/dist/seed/wishlists-seed-data.js +36 -52
- package/dist/seo/json-ld.js +6 -4
- package/dist/styles.css +8052 -3
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/search-tokens.d.ts +2 -0
- package/dist/utils/search-tokens.js +21 -0
- package/package.json +2 -2
- package/scripts/seed-cli.mjs +2 -2
|
@@ -1,1653 +1,1078 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
*
|
|
1
|
+
/*
|
|
2
|
+
* WHY: Seeds 55 FAQs for LetItRip collectibles marketplace — covers general platform, shipping,
|
|
3
|
+
* returns, payments, auctions, pre-orders, product info, account/security, scam awareness.
|
|
4
|
+
* WHAT: Mix of broad collectibles marketplace FAQs + category-specific FAQs (trading cards, action figures,
|
|
5
|
+
* diecast, Beyblade, model kits, grading, authenticity, bundles, prize draws).
|
|
4
6
|
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
+
* EXPORTS:
|
|
8
|
+
* faqSeedData — Array of Partial<FAQDocument> for seed runner
|
|
7
9
|
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
10
|
+
* @tag domain:faqs
|
|
11
|
+
* @tag layer:seed
|
|
12
|
+
* @tag pattern:none
|
|
13
|
+
* @tag access:server-only
|
|
14
|
+
* @tag consumers:seed/index.ts,seed/runner.ts,SeedPanel
|
|
15
|
+
* @tag sideEffects:none
|
|
14
16
|
*/
|
|
15
17
|
const NOW = new Date();
|
|
16
18
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
17
19
|
const html = (text) => ({ text, format: "html" });
|
|
18
20
|
const makeStats = (views = 0, helpful = 0) => ({ views, helpful, notHelpful: 0 });
|
|
19
21
|
export const faqSeedData = [
|
|
20
|
-
//
|
|
21
|
-
// GENERAL (10 FAQs)
|
|
22
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
22
|
+
// ── GENERAL (10) ────────────────────────────────────────────────────────────
|
|
23
23
|
{
|
|
24
24
|
id: "faq-what-is-letitrip",
|
|
25
25
|
question: "What is LetItRip?",
|
|
26
|
-
answer: html(`<p><strong>LetItRip</strong> is India's
|
|
26
|
+
answer: html(`<p><strong>LetItRip</strong> is India's largest collectibles marketplace — trading cards (Pokémon, Yu-Gi-Oh!, One Piece), action figures (Bandai, McFarlane, Good Smile), diecast vehicles (Hot Wheels, Tomica), Beyblades, model kits (Gundam, Zoids), and vintage/rare collectibles. Every seller is manually verified before they can list.</p><p>LetItRip is a <strong>platform</strong> that connects buyers with independent sellers. We handle payments, escrow, and dispute mediation — but we are not the seller. Each store has its own shipping, return, and authenticity policies.</p>`),
|
|
27
27
|
category: "general",
|
|
28
28
|
showOnHomepage: true,
|
|
29
29
|
showInFooter: false,
|
|
30
30
|
isPinned: true,
|
|
31
31
|
order: 1,
|
|
32
32
|
priority: 10,
|
|
33
|
-
tags: ["about", "letitrip", "platform", "marketplace"],
|
|
34
|
-
relatedFAQs: ["faq-is-letitrip-safe
|
|
33
|
+
tags: ["about", "letitrip", "platform", "marketplace", "collectibles"],
|
|
34
|
+
relatedFAQs: ["faq-is-letitrip-safe", "faq-how-does-letitrip-work"],
|
|
35
35
|
useSiteSettings: true,
|
|
36
36
|
variables: {},
|
|
37
37
|
stats: makeStats(8200, 410),
|
|
38
|
-
seo: {
|
|
39
|
-
slug: "faq-what-is-letitrip",
|
|
40
|
-
metaTitle: "What is LetItRip? India's Collectibles Marketplace",
|
|
41
|
-
metaDescription: "LetItRip is India's verified collectibles marketplace for Pokémon TCG, Hot Wheels, Beyblade X, anime figures, and more.",
|
|
42
|
-
},
|
|
38
|
+
seo: { slug: "faq-what-is-letitrip", metaTitle: "What is LetItRip? India's Collectibles Marketplace", metaDescription: "LetItRip is India's verified collectibles marketplace for trading cards, action figures, diecast vehicles, and more." },
|
|
43
39
|
isActive: true,
|
|
44
40
|
createdBy: "user-admin-letitrip",
|
|
45
|
-
createdAt: daysAgo(
|
|
41
|
+
createdAt: daysAgo(120),
|
|
46
42
|
updatedAt: daysAgo(5),
|
|
47
43
|
},
|
|
48
44
|
{
|
|
49
|
-
id: "faq-is-letitrip-safe
|
|
50
|
-
question: "Is LetItRip safe to buy
|
|
51
|
-
answer: html(`<p>
|
|
45
|
+
id: "faq-is-letitrip-safe",
|
|
46
|
+
question: "Is LetItRip safe to buy from?",
|
|
47
|
+
answer: html(`<p>Yes. All sellers are verified before they can list. Payments go through secure escrow — sellers only get paid after you confirm delivery. If something goes wrong, our support team mediates the dispute.</p>`),
|
|
52
48
|
category: "general",
|
|
53
49
|
showOnHomepage: true,
|
|
54
50
|
showInFooter: false,
|
|
55
|
-
isPinned:
|
|
51
|
+
isPinned: false,
|
|
56
52
|
order: 2,
|
|
57
|
-
priority:
|
|
58
|
-
tags: ["safety", "
|
|
59
|
-
relatedFAQs: ["faq-what-is-letitrip", "faq-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
stats: makeStats(6100, 290),
|
|
63
|
-
seo: {
|
|
64
|
-
slug: "faq-is-letitrip-safe-to-use",
|
|
65
|
-
metaTitle: "Is LetItRip Safe? Buyer & Seller Protection Explained",
|
|
66
|
-
metaDescription: "LetItRip verifies sellers, holds payments in escrow, and mediates disputes — but we're a platform, not the seller. Learn what's covered.",
|
|
67
|
-
},
|
|
53
|
+
priority: 9,
|
|
54
|
+
tags: ["safety", "escrow", "trust"],
|
|
55
|
+
relatedFAQs: ["faq-what-is-letitrip", "faq-what-is-escrow"],
|
|
56
|
+
stats: makeStats(5400, 270),
|
|
57
|
+
seo: { slug: "faq-is-letitrip-safe", metaTitle: "Is LetItRip Safe?", metaDescription: "Learn about LetItRip's seller verification, payment escrow, and buyer protection." },
|
|
68
58
|
isActive: true,
|
|
69
59
|
createdBy: "user-admin-letitrip",
|
|
70
|
-
createdAt: daysAgo(
|
|
71
|
-
updatedAt: daysAgo(
|
|
60
|
+
createdAt: daysAgo(120),
|
|
61
|
+
updatedAt: daysAgo(10),
|
|
72
62
|
},
|
|
73
63
|
{
|
|
74
64
|
id: "faq-how-does-letitrip-work",
|
|
75
|
-
question: "How does LetItRip work?",
|
|
76
|
-
answer: html(`<p>
|
|
65
|
+
question: "How does buying on LetItRip work?",
|
|
66
|
+
answer: html(`<p>Browse verified stores, add items to your cart, and checkout with Razorpay (UPI, cards, net banking). Your payment is held in escrow until you confirm delivery. Sellers ship directly to you — check each store's shipping policy for timelines.</p>`),
|
|
77
67
|
category: "general",
|
|
78
|
-
showOnHomepage:
|
|
79
|
-
showInFooter:
|
|
68
|
+
showOnHomepage: true,
|
|
69
|
+
showInFooter: true,
|
|
80
70
|
isPinned: false,
|
|
81
71
|
order: 3,
|
|
82
72
|
priority: 8,
|
|
83
|
-
tags: ["
|
|
84
|
-
relatedFAQs: ["faq-what-is-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
stats: makeStats(4200, 195),
|
|
88
|
-
seo: { slug: "faq-how-does-letitrip-work" },
|
|
73
|
+
tags: ["buying", "checkout", "how-it-works"],
|
|
74
|
+
relatedFAQs: ["faq-what-is-escrow", "faq-payment-methods"],
|
|
75
|
+
stats: makeStats(4100, 205),
|
|
76
|
+
seo: { slug: "faq-how-does-letitrip-work", metaTitle: "How Does LetItRip Work?", metaDescription: "Step-by-step guide to buying collectibles on LetItRip." },
|
|
89
77
|
isActive: true,
|
|
90
78
|
createdBy: "user-admin-letitrip",
|
|
91
|
-
createdAt: daysAgo(
|
|
92
|
-
updatedAt: daysAgo(
|
|
79
|
+
createdAt: daysAgo(110),
|
|
80
|
+
updatedAt: daysAgo(8),
|
|
93
81
|
},
|
|
94
82
|
{
|
|
95
|
-
id: "faq-
|
|
96
|
-
question: "
|
|
97
|
-
answer: html(`<p>
|
|
83
|
+
id: "faq-how-to-sell-on-letitrip",
|
|
84
|
+
question: "How do I become a seller on LetItRip?",
|
|
85
|
+
answer: html(`<p>Go to your Account → Become a Seller. Fill in your store details, upload verification documents, and submit for review. Our team typically approves sellers within 48 hours. Once approved, you can start listing immediately.</p>`),
|
|
98
86
|
category: "general",
|
|
99
87
|
showOnHomepage: false,
|
|
100
|
-
showInFooter:
|
|
88
|
+
showInFooter: true,
|
|
101
89
|
isPinned: false,
|
|
102
90
|
order: 4,
|
|
103
91
|
priority: 7,
|
|
104
|
-
tags: ["
|
|
105
|
-
relatedFAQs: ["faq-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
stats: makeStats(3100, 142),
|
|
109
|
-
seo: { slug: "faq-what-collectibles-can-i-buy" },
|
|
92
|
+
tags: ["seller", "registration", "store"],
|
|
93
|
+
relatedFAQs: ["faq-seller-fees", "faq-seller-payout-schedule"],
|
|
94
|
+
stats: makeStats(3200, 160),
|
|
95
|
+
seo: { slug: "faq-how-to-sell-on-letitrip", metaTitle: "How to Sell on LetItRip", metaDescription: "Become a verified seller on India's largest collectibles marketplace." },
|
|
110
96
|
isActive: true,
|
|
111
97
|
createdBy: "user-admin-letitrip",
|
|
112
|
-
createdAt: daysAgo(
|
|
113
|
-
updatedAt: daysAgo(
|
|
98
|
+
createdAt: daysAgo(100),
|
|
99
|
+
updatedAt: daysAgo(15),
|
|
114
100
|
},
|
|
115
101
|
{
|
|
116
|
-
id: "faq-
|
|
117
|
-
question: "
|
|
118
|
-
answer: html(`<p>LetItRip
|
|
102
|
+
id: "faq-what-categories-available",
|
|
103
|
+
question: "What types of collectibles can I find on LetItRip?",
|
|
104
|
+
answer: html(`<p>LetItRip covers six major categories: <strong>Trading Cards</strong> (Pokémon, Yu-Gi-Oh!, One Piece, Dragon Ball), <strong>Action Figures</strong> (Bandai, McFarlane, Good Smile, NECA, Funko Pop), <strong>Diecast Vehicles</strong> (Hot Wheels, Tomica, Matchbox), <strong>Spinning Tops</strong> (Beyblade X, Burst, Metal Saga), <strong>Model Kits</strong> (Gundam, Zoids, Evangelion), and <strong>Vintage & Rare</strong> collectibles. Each category has subcategories for easy browsing.</p>`),
|
|
119
105
|
category: "general",
|
|
120
|
-
showOnHomepage:
|
|
106
|
+
showOnHomepage: false,
|
|
121
107
|
showInFooter: false,
|
|
122
|
-
isPinned:
|
|
108
|
+
isPinned: false,
|
|
123
109
|
order: 5,
|
|
124
|
-
priority:
|
|
125
|
-
tags: ["
|
|
126
|
-
relatedFAQs: ["faq-what-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
stats: makeStats(6200, 310),
|
|
130
|
-
seo: {
|
|
131
|
-
slug: "faq-how-does-bidding-work",
|
|
132
|
-
metaTitle: "How Do Auctions Work on LetItRip?",
|
|
133
|
-
metaDescription: "LetItRip uses a timed open-bid system with auto-extend. Learn how to bid on rare collectibles.",
|
|
134
|
-
},
|
|
110
|
+
priority: 6,
|
|
111
|
+
tags: ["categories", "products", "collectibles"],
|
|
112
|
+
relatedFAQs: ["faq-what-is-letitrip"],
|
|
113
|
+
stats: makeStats(2800, 140),
|
|
114
|
+
seo: { slug: "faq-what-categories-available", metaTitle: "What Collectibles Are on LetItRip?", metaDescription: "Browse trading cards, action figures, diecast, Beyblades, model kits, and vintage collectibles." },
|
|
135
115
|
isActive: true,
|
|
136
116
|
createdBy: "user-admin-letitrip",
|
|
137
|
-
createdAt: daysAgo(
|
|
138
|
-
updatedAt: daysAgo(
|
|
117
|
+
createdAt: daysAgo(95),
|
|
118
|
+
updatedAt: daysAgo(20),
|
|
139
119
|
},
|
|
140
120
|
{
|
|
141
|
-
id: "faq-
|
|
142
|
-
question: "
|
|
143
|
-
answer: html(`<p>
|
|
121
|
+
id: "faq-make-an-offer",
|
|
122
|
+
question: "Can I negotiate the price with a seller?",
|
|
123
|
+
answer: html(`<p>Yes! Most listings have a "Make an Offer" button. Submit your offer and the seller can accept, counter, or decline. If accepted, the item is locked at the agreed price for 24 hours so you can complete checkout.</p>`),
|
|
144
124
|
category: "general",
|
|
145
125
|
showOnHomepage: false,
|
|
146
126
|
showInFooter: false,
|
|
147
127
|
isPinned: false,
|
|
148
128
|
order: 6,
|
|
149
|
-
priority:
|
|
150
|
-
tags: ["
|
|
151
|
-
relatedFAQs: ["faq-how-does-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
stats: makeStats(3800, 172),
|
|
155
|
-
seo: { slug: "faq-what-happens-when-i-win-an-auction" },
|
|
129
|
+
priority: 6,
|
|
130
|
+
tags: ["offer", "negotiation", "price"],
|
|
131
|
+
relatedFAQs: ["faq-how-does-letitrip-work"],
|
|
132
|
+
stats: makeStats(2500, 125),
|
|
133
|
+
seo: { slug: "faq-make-an-offer", metaTitle: "Make an Offer on LetItRip", metaDescription: "Negotiate prices with sellers on India's collectibles marketplace." },
|
|
156
134
|
isActive: true,
|
|
157
135
|
createdBy: "user-admin-letitrip",
|
|
158
|
-
createdAt: daysAgo(
|
|
159
|
-
updatedAt: daysAgo(
|
|
136
|
+
createdAt: daysAgo(88),
|
|
137
|
+
updatedAt: daysAgo(14),
|
|
160
138
|
},
|
|
161
139
|
{
|
|
162
|
-
id: "faq-
|
|
163
|
-
question: "
|
|
164
|
-
answer: html(`<p
|
|
140
|
+
id: "faq-what-is-escrow",
|
|
141
|
+
question: "What is escrow and how does it protect me?",
|
|
142
|
+
answer: html(`<p>Escrow means your payment is held by LetItRip — not sent directly to the seller. The seller ships the item, you receive it, and only when you confirm delivery (or 7 days pass without a dispute) does the seller get paid. This protects both buyers and sellers from fraud.</p>`),
|
|
165
143
|
category: "general",
|
|
166
|
-
showOnHomepage:
|
|
144
|
+
showOnHomepage: true,
|
|
167
145
|
showInFooter: false,
|
|
168
146
|
isPinned: false,
|
|
169
147
|
order: 7,
|
|
170
|
-
priority:
|
|
171
|
-
tags: ["
|
|
172
|
-
relatedFAQs: ["faq-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
stats: makeStats(1900, 82),
|
|
176
|
-
seo: { slug: "faq-can-i-retract-a-bid" },
|
|
148
|
+
priority: 9,
|
|
149
|
+
tags: ["escrow", "trust", "buyer-protection"],
|
|
150
|
+
relatedFAQs: ["faq-is-letitrip-safe", "faq-payment-methods"],
|
|
151
|
+
stats: makeStats(4300, 215),
|
|
152
|
+
seo: { slug: "faq-what-is-escrow", metaTitle: "How Escrow Works on LetItRip", metaDescription: "Understand how escrow protects your collectibles purchases." },
|
|
177
153
|
isActive: true,
|
|
178
154
|
createdBy: "user-admin-letitrip",
|
|
179
|
-
createdAt: daysAgo(
|
|
180
|
-
updatedAt: daysAgo(
|
|
155
|
+
createdAt: daysAgo(108),
|
|
156
|
+
updatedAt: daysAgo(8),
|
|
181
157
|
},
|
|
182
158
|
{
|
|
183
|
-
id: "faq-
|
|
184
|
-
question: "
|
|
185
|
-
answer: html(`<p>
|
|
159
|
+
id: "faq-wishlists-and-alerts",
|
|
160
|
+
question: "Can I save items and get notified about price drops?",
|
|
161
|
+
answer: html(`<p>Yes! Add any listing to your Wishlist (up to 20 items). You'll receive notifications when a wishlisted item drops in price, gets relisted, or when similar items appear. Your recently viewed items are also saved in your browsing history (up to 50).</p>`),
|
|
186
162
|
category: "general",
|
|
187
163
|
showOnHomepage: false,
|
|
188
164
|
showInFooter: false,
|
|
189
165
|
isPinned: false,
|
|
190
166
|
order: 8,
|
|
191
167
|
priority: 5,
|
|
192
|
-
tags: ["
|
|
193
|
-
relatedFAQs: ["faq-how-does-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
stats: makeStats(1400, 61),
|
|
197
|
-
seo: { slug: "faq-what-is-a-reserve-price" },
|
|
168
|
+
tags: ["wishlist", "alerts", "price-drop", "history"],
|
|
169
|
+
relatedFAQs: ["faq-how-does-letitrip-work"],
|
|
170
|
+
stats: makeStats(1800, 90),
|
|
171
|
+
seo: { slug: "faq-wishlists-and-alerts", metaTitle: "Wishlists & Price Alerts", metaDescription: "Save items and get price drop alerts on LetItRip." },
|
|
198
172
|
isActive: true,
|
|
199
173
|
createdBy: "user-admin-letitrip",
|
|
200
|
-
createdAt: daysAgo(
|
|
201
|
-
updatedAt: daysAgo(
|
|
174
|
+
createdAt: daysAgo(60),
|
|
175
|
+
updatedAt: daysAgo(8),
|
|
202
176
|
},
|
|
203
177
|
{
|
|
204
|
-
id: "faq-
|
|
205
|
-
question: "
|
|
206
|
-
answer: html(`<p>
|
|
178
|
+
id: "faq-bundles-and-deals",
|
|
179
|
+
question: "What are bundles and how do they save me money?",
|
|
180
|
+
answer: html(`<p>Bundles are curated sets of related collectibles sold at a discount. For example, a complete Beyblade starter set or a sealed Pokémon booster box + sleeves + playmat combo. Sellers create bundles to offer savings on grouped items — look for the savings badge on each bundle listing.</p>`),
|
|
207
181
|
category: "general",
|
|
208
182
|
showOnHomepage: false,
|
|
209
183
|
showInFooter: false,
|
|
210
184
|
isPinned: false,
|
|
211
185
|
order: 9,
|
|
212
|
-
priority:
|
|
213
|
-
tags: ["
|
|
214
|
-
relatedFAQs: ["faq-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
stats: makeStats(2800, 198),
|
|
218
|
-
seo: { slug: "faq-how-do-i-report-a-fake-item" },
|
|
186
|
+
priority: 5,
|
|
187
|
+
tags: ["bundles", "deals", "savings"],
|
|
188
|
+
relatedFAQs: ["faq-what-categories-available"],
|
|
189
|
+
stats: makeStats(1400, 70),
|
|
190
|
+
seo: { slug: "faq-bundles-and-deals", metaTitle: "Bundles & Deals on LetItRip", metaDescription: "Save money on curated collectible bundles on LetItRip." },
|
|
219
191
|
isActive: true,
|
|
220
192
|
createdBy: "user-admin-letitrip",
|
|
221
|
-
createdAt: daysAgo(
|
|
193
|
+
createdAt: daysAgo(30),
|
|
222
194
|
updatedAt: daysAgo(5),
|
|
223
195
|
},
|
|
224
196
|
{
|
|
225
|
-
id: "faq-
|
|
226
|
-
question: "How do
|
|
227
|
-
answer: html(`<p>
|
|
197
|
+
id: "faq-prize-draws-how-they-work",
|
|
198
|
+
question: "How do prize draws and spin wheels work?",
|
|
199
|
+
answer: html(`<p>LetItRip runs community prize draws tied to events. Enter eligible events for a chance to win rare collectibles. Some events feature a spin wheel — spin for instant prizes like discount coupons or free shipping. Winners are selected using cryptographically random selection. Check the Events page for active draws.</p>`),
|
|
228
200
|
category: "general",
|
|
229
201
|
showOnHomepage: false,
|
|
230
|
-
showInFooter:
|
|
202
|
+
showInFooter: false,
|
|
231
203
|
isPinned: false,
|
|
232
204
|
order: 10,
|
|
233
|
-
priority:
|
|
234
|
-
tags: ["
|
|
235
|
-
relatedFAQs: ["faq-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
stats: makeStats(3400, 156),
|
|
239
|
-
seo: { slug: "faq-how-do-i-contact-support" },
|
|
205
|
+
priority: 5,
|
|
206
|
+
tags: ["prize-draw", "spin-wheel", "events", "raffle"],
|
|
207
|
+
relatedFAQs: ["faq-community-events"],
|
|
208
|
+
stats: makeStats(1100, 55),
|
|
209
|
+
seo: { slug: "faq-prize-draws-how-they-work", metaTitle: "Prize Draws & Spin Wheels", metaDescription: "Enter prize draws and spin wheels to win rare collectibles on LetItRip." },
|
|
240
210
|
isActive: true,
|
|
241
211
|
createdBy: "user-admin-letitrip",
|
|
242
|
-
createdAt: daysAgo(
|
|
243
|
-
updatedAt: daysAgo(
|
|
212
|
+
createdAt: daysAgo(20),
|
|
213
|
+
updatedAt: daysAgo(3),
|
|
244
214
|
},
|
|
245
|
-
//
|
|
246
|
-
// SHIPPING & DELIVERY (7 FAQs)
|
|
247
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
215
|
+
// ── SHIPPING & DELIVERY (7) ────────────────────────────────────────────────
|
|
248
216
|
{
|
|
249
217
|
id: "faq-how-long-does-shipping-take",
|
|
250
218
|
question: "How long does shipping take?",
|
|
251
|
-
answer: html(`<p
|
|
219
|
+
answer: html(`<p>Shipping timelines depend on the seller's location and chosen courier. Most sellers ship within 1–3 business days. Domestic delivery typically takes 3–7 business days. Check each store's shipping policy for specifics.</p>`),
|
|
252
220
|
category: "shipping_delivery",
|
|
253
221
|
showOnHomepage: true,
|
|
254
|
-
showInFooter: true,
|
|
255
|
-
isPinned: true,
|
|
256
|
-
order: 1,
|
|
257
|
-
priority: 10,
|
|
258
|
-
tags: ["shipping", "delivery", "timeline"],
|
|
259
|
-
relatedFAQs: ["faq-how-do-i-find-store-shipping-policy", "faq-how-to-track-my-order"],
|
|
260
|
-
useSiteSettings: true,
|
|
261
|
-
variables: {},
|
|
262
|
-
stats: makeStats(3200, 148),
|
|
263
|
-
seo: {
|
|
264
|
-
slug: "faq-how-long-does-shipping-take",
|
|
265
|
-
metaTitle: "How Long Does Shipping Take on LetItRip?",
|
|
266
|
-
metaDescription: "Shipping timelines on LetItRip are set by each store. Check the store's About page for exact timelines.",
|
|
267
|
-
},
|
|
268
|
-
isActive: true,
|
|
269
|
-
createdBy: "user-admin-letitrip",
|
|
270
|
-
createdAt: daysAgo(90),
|
|
271
|
-
updatedAt: daysAgo(5),
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
id: "faq-how-do-i-find-store-shipping-policy",
|
|
275
|
-
question: "Where can I find a store's shipping policy?",
|
|
276
|
-
answer: html(`<p>Every store on LetItRip sets its own shipping rules — dispatch windows, carriers used, packaging standards, and whether they offer express options. To find a specific store's policy:</p><ol><li>Open any listing from that store and click the <strong>store name</strong> near the seller details.</li><li>On the store page, click the <strong>About</strong> tab.</li><li>Scroll to the Shipping & Dispatch section.</li></ol><p>Alternatively, the store's policy is shown on the checkout page under "Shipping" before you confirm payment.</p><p><strong>LetItRip strongly recommends reading a store's shipping policy before purchasing</strong>, especially for high-value items or time-sensitive orders (e.g., gifts, tournament deadlines). Stores are independent businesses and their policies vary.</p>`),
|
|
277
|
-
category: "shipping_delivery",
|
|
278
|
-
showOnHomepage: false,
|
|
279
222
|
showInFooter: false,
|
|
280
223
|
isPinned: false,
|
|
281
|
-
order:
|
|
224
|
+
order: 11,
|
|
282
225
|
priority: 9,
|
|
283
|
-
tags: ["shipping", "
|
|
284
|
-
relatedFAQs: ["faq-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
stats: makeStats(1800, 96),
|
|
288
|
-
seo: { slug: "faq-how-do-i-find-store-shipping-policy" },
|
|
226
|
+
tags: ["shipping", "delivery", "timeline"],
|
|
227
|
+
relatedFAQs: ["faq-track-my-order", "faq-how-are-cards-packaged"],
|
|
228
|
+
stats: makeStats(6100, 305),
|
|
229
|
+
seo: { slug: "faq-how-long-does-shipping-take", metaTitle: "Shipping Times on LetItRip", metaDescription: "Typical shipping timelines for collectibles orders on LetItRip." },
|
|
289
230
|
isActive: true,
|
|
290
231
|
createdBy: "user-admin-letitrip",
|
|
291
|
-
createdAt: daysAgo(
|
|
292
|
-
updatedAt: daysAgo(
|
|
232
|
+
createdAt: daysAgo(115),
|
|
233
|
+
updatedAt: daysAgo(7),
|
|
293
234
|
},
|
|
294
235
|
{
|
|
295
|
-
id: "faq-
|
|
296
|
-
question: "
|
|
297
|
-
answer: html(`<p>
|
|
236
|
+
id: "faq-how-are-cards-packaged",
|
|
237
|
+
question: "How are collectibles packaged for shipping?",
|
|
238
|
+
answer: html(`<p>All verified sellers follow category-specific packaging standards: <strong>Trading cards</strong> — penny sleeves + top-loaders, rigid mailers. <strong>Action figures</strong> — bubble wrap, double-boxed for mint-in-box items. <strong>Diecast/Beyblade</strong> — foam inserts, padded boxes. <strong>Graded slabs</strong> — padded fitted boxes. If an item arrives damaged due to poor packaging, open a dispute and our team will mediate.</p>`),
|
|
298
239
|
category: "shipping_delivery",
|
|
299
240
|
showOnHomepage: false,
|
|
300
241
|
showInFooter: false,
|
|
301
242
|
isPinned: false,
|
|
302
|
-
order:
|
|
243
|
+
order: 12,
|
|
303
244
|
priority: 7,
|
|
304
|
-
tags: ["
|
|
305
|
-
relatedFAQs: ["faq-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
stats: makeStats(2100, 94),
|
|
309
|
-
seo: { slug: "faq-do-you-offer-free-shipping" },
|
|
245
|
+
tags: ["packaging", "shipping", "protection"],
|
|
246
|
+
relatedFAQs: ["faq-damaged-in-transit"],
|
|
247
|
+
stats: makeStats(3400, 170),
|
|
248
|
+
seo: { slug: "faq-how-are-cards-packaged", metaTitle: "Packaging Standards for Collectibles", metaDescription: "How sellers package collectibles for safe delivery on LetItRip." },
|
|
310
249
|
isActive: true,
|
|
311
250
|
createdBy: "user-admin-letitrip",
|
|
312
|
-
createdAt: daysAgo(
|
|
313
|
-
updatedAt: daysAgo(
|
|
251
|
+
createdAt: daysAgo(110),
|
|
252
|
+
updatedAt: daysAgo(12),
|
|
314
253
|
},
|
|
315
254
|
{
|
|
316
|
-
id: "faq-
|
|
317
|
-
question: "
|
|
318
|
-
answer: html(`<p>
|
|
255
|
+
id: "faq-free-shipping-available",
|
|
256
|
+
question: "Is free shipping available?",
|
|
257
|
+
answer: html(`<p>Many sellers offer free shipping on orders above a certain amount. Look for the "Free Shipping" badge on product listings. You can also use the FREESHIP999 coupon for free shipping on orders ₹999+.</p>`),
|
|
319
258
|
category: "shipping_delivery",
|
|
320
259
|
showOnHomepage: false,
|
|
321
260
|
showInFooter: false,
|
|
322
261
|
isPinned: false,
|
|
323
|
-
order:
|
|
324
|
-
priority:
|
|
325
|
-
tags: ["
|
|
326
|
-
relatedFAQs: ["faq-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
stats: makeStats(1750, 78),
|
|
330
|
-
seo: { slug: "faq-how-to-track-my-order" },
|
|
262
|
+
order: 13,
|
|
263
|
+
priority: 6,
|
|
264
|
+
tags: ["free-shipping", "coupons"],
|
|
265
|
+
relatedFAQs: ["faq-coupons-and-discounts"],
|
|
266
|
+
stats: makeStats(2900, 145),
|
|
267
|
+
seo: { slug: "faq-free-shipping-available", metaTitle: "Free Shipping on LetItRip", metaDescription: "How to get free shipping on your collectibles orders." },
|
|
331
268
|
isActive: true,
|
|
332
269
|
createdBy: "user-admin-letitrip",
|
|
333
|
-
createdAt: daysAgo(
|
|
334
|
-
updatedAt: daysAgo(
|
|
270
|
+
createdAt: daysAgo(100),
|
|
271
|
+
updatedAt: daysAgo(14),
|
|
335
272
|
},
|
|
336
273
|
{
|
|
337
|
-
id: "faq-
|
|
274
|
+
id: "faq-international-shipping",
|
|
338
275
|
question: "Do you ship internationally?",
|
|
339
|
-
answer: html(`<p>LetItRip currently
|
|
276
|
+
answer: html(`<p>LetItRip currently operates within India only. International shipping is not supported at this time. We're working on expanding to more countries — stay tuned!</p>`),
|
|
340
277
|
category: "shipping_delivery",
|
|
341
278
|
showOnHomepage: false,
|
|
342
279
|
showInFooter: false,
|
|
343
280
|
isPinned: false,
|
|
344
|
-
order:
|
|
281
|
+
order: 14,
|
|
345
282
|
priority: 5,
|
|
346
283
|
tags: ["international", "shipping"],
|
|
347
284
|
relatedFAQs: [],
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
stats: makeStats(980, 41),
|
|
351
|
-
seo: { slug: "faq-do-you-ship-internationally" },
|
|
285
|
+
stats: makeStats(1800, 90),
|
|
286
|
+
seo: { slug: "faq-international-shipping", metaTitle: "International Shipping", metaDescription: "LetItRip currently ships within India only." },
|
|
352
287
|
isActive: true,
|
|
353
288
|
createdBy: "user-admin-letitrip",
|
|
354
289
|
createdAt: daysAgo(90),
|
|
355
|
-
updatedAt: daysAgo(
|
|
290
|
+
updatedAt: daysAgo(30),
|
|
356
291
|
},
|
|
357
292
|
{
|
|
358
|
-
id: "faq-
|
|
359
|
-
question: "
|
|
360
|
-
answer: html(`<p>
|
|
293
|
+
id: "faq-track-my-order",
|
|
294
|
+
question: "How do I track my order?",
|
|
295
|
+
answer: html(`<p>Once your seller ships the order, you'll receive a tracking number via email and in-app notification. Go to Account → My Orders → click the order to see real-time tracking. Most sellers use Shiprocket for automated tracking updates.</p>`),
|
|
361
296
|
category: "shipping_delivery",
|
|
362
297
|
showOnHomepage: false,
|
|
363
298
|
showInFooter: false,
|
|
364
299
|
isPinned: false,
|
|
365
|
-
order:
|
|
366
|
-
priority:
|
|
367
|
-
tags: ["
|
|
368
|
-
relatedFAQs: ["faq-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
stats: makeStats(1340, 72),
|
|
372
|
-
seo: { slug: "faq-what-happens-if-item-damaged-in-transit" },
|
|
300
|
+
order: 15,
|
|
301
|
+
priority: 8,
|
|
302
|
+
tags: ["tracking", "orders", "shiprocket"],
|
|
303
|
+
relatedFAQs: ["faq-how-long-does-shipping-take"],
|
|
304
|
+
stats: makeStats(4500, 225),
|
|
305
|
+
seo: { slug: "faq-track-my-order", metaTitle: "Track Your Order", metaDescription: "How to track your collectibles order on LetItRip." },
|
|
373
306
|
isActive: true,
|
|
374
307
|
createdBy: "user-admin-letitrip",
|
|
375
|
-
createdAt: daysAgo(
|
|
376
|
-
updatedAt: daysAgo(
|
|
308
|
+
createdAt: daysAgo(105),
|
|
309
|
+
updatedAt: daysAgo(9),
|
|
377
310
|
},
|
|
378
311
|
{
|
|
379
|
-
id: "faq-
|
|
380
|
-
question: "
|
|
381
|
-
answer: html(`<p>
|
|
312
|
+
id: "faq-shipping-for-large-items",
|
|
313
|
+
question: "How are large items like statues and display cases shipped?",
|
|
314
|
+
answer: html(`<p>Oversized items (large action figures, resin statues, display shelves) are shipped via specialist couriers with additional insurance. Sellers may charge a higher shipping fee for fragile oversized items. Delivery timelines for these may be 5–10 business days depending on location.</p>`),
|
|
382
315
|
category: "shipping_delivery",
|
|
383
316
|
showOnHomepage: false,
|
|
384
317
|
showInFooter: false,
|
|
385
318
|
isPinned: false,
|
|
386
|
-
order:
|
|
319
|
+
order: 16,
|
|
387
320
|
priority: 5,
|
|
388
|
-
tags: ["
|
|
389
|
-
relatedFAQs: ["faq-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
stats: makeStats(890, 38),
|
|
393
|
-
seo: { slug: "faq-can-i-change-delivery-address-after-order" },
|
|
321
|
+
tags: ["large-items", "shipping", "statues", "insurance"],
|
|
322
|
+
relatedFAQs: ["faq-how-are-cards-packaged"],
|
|
323
|
+
stats: makeStats(900, 45),
|
|
324
|
+
seo: { slug: "faq-shipping-for-large-items", metaTitle: "Shipping Large Collectibles", metaDescription: "How oversized items like statues and display cases are shipped on LetItRip." },
|
|
394
325
|
isActive: true,
|
|
395
326
|
createdBy: "user-admin-letitrip",
|
|
396
|
-
createdAt: daysAgo(
|
|
397
|
-
updatedAt: daysAgo(
|
|
327
|
+
createdAt: daysAgo(45),
|
|
328
|
+
updatedAt: daysAgo(10),
|
|
398
329
|
},
|
|
399
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
400
|
-
// RETURNS & REFUNDS (6 FAQs)
|
|
401
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
402
330
|
{
|
|
403
|
-
id: "faq-
|
|
404
|
-
question: "What is
|
|
405
|
-
answer: html(`<p
|
|
406
|
-
category: "
|
|
407
|
-
showOnHomepage:
|
|
408
|
-
showInFooter:
|
|
409
|
-
isPinned:
|
|
410
|
-
order:
|
|
411
|
-
priority:
|
|
412
|
-
tags: ["
|
|
413
|
-
relatedFAQs: ["faq-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
stats: makeStats(4100, 204),
|
|
417
|
-
seo: {
|
|
418
|
-
slug: "faq-what-is-the-return-policy",
|
|
419
|
-
metaTitle: "Return Policy on LetItRip — What Buyers Should Know",
|
|
420
|
-
metaDescription: "Return policies are set by each store on LetItRip, not the platform. Read the store's About page before buying.",
|
|
421
|
-
},
|
|
331
|
+
id: "faq-shiprocket-auto-tracking",
|
|
332
|
+
question: "What is Shiprocket and how does auto-tracking work?",
|
|
333
|
+
answer: html(`<p>Shiprocket is our integrated courier partner. When a seller marks your order as shipped with Shiprocket, tracking is automatically created — you'll get real-time SMS and email updates at every milestone (picked up, in transit, out for delivery, delivered). No manual tracking number entry needed.</p>`),
|
|
334
|
+
category: "shipping_delivery",
|
|
335
|
+
showOnHomepage: false,
|
|
336
|
+
showInFooter: false,
|
|
337
|
+
isPinned: false,
|
|
338
|
+
order: 17,
|
|
339
|
+
priority: 6,
|
|
340
|
+
tags: ["shiprocket", "tracking", "automation"],
|
|
341
|
+
relatedFAQs: ["faq-track-my-order"],
|
|
342
|
+
stats: makeStats(1500, 75),
|
|
343
|
+
seo: { slug: "faq-shiprocket-auto-tracking", metaTitle: "Shiprocket Auto-Tracking", metaDescription: "How Shiprocket auto-tracking works for your LetItRip orders." },
|
|
422
344
|
isActive: true,
|
|
423
345
|
createdBy: "user-admin-letitrip",
|
|
424
|
-
createdAt: daysAgo(
|
|
425
|
-
updatedAt: daysAgo(
|
|
346
|
+
createdAt: daysAgo(40),
|
|
347
|
+
updatedAt: daysAgo(8),
|
|
426
348
|
},
|
|
349
|
+
// ── RETURNS & REFUNDS (7) ─────────────────────────────────────────────────
|
|
427
350
|
{
|
|
428
|
-
id: "faq-
|
|
429
|
-
question: "
|
|
430
|
-
answer: html(`<p
|
|
351
|
+
id: "faq-return-policy",
|
|
352
|
+
question: "What is LetItRip's return policy?",
|
|
353
|
+
answer: html(`<p>Each store sets its own return policy. Most stores accept returns within 7 days for items not as described. Graded cards (PSA/BGS/CGC) and sealed products are typically final sale. Always check the store's return policy before purchasing. If a seller doesn't honor their policy, open a support ticket and we'll mediate.</p>`),
|
|
431
354
|
category: "returns_refunds",
|
|
432
|
-
showOnHomepage:
|
|
433
|
-
showInFooter:
|
|
355
|
+
showOnHomepage: true,
|
|
356
|
+
showInFooter: true,
|
|
434
357
|
isPinned: false,
|
|
435
|
-
order:
|
|
358
|
+
order: 18,
|
|
436
359
|
priority: 9,
|
|
437
|
-
tags: ["returns", "
|
|
438
|
-
relatedFAQs: ["faq-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
stats: makeStats(2900, 164),
|
|
442
|
-
seo: { slug: "faq-does-letitrip-guarantee-returns" },
|
|
360
|
+
tags: ["returns", "refunds", "policy"],
|
|
361
|
+
relatedFAQs: ["faq-how-to-request-refund", "faq-counterfeit-guarantee"],
|
|
362
|
+
stats: makeStats(5800, 290),
|
|
363
|
+
seo: { slug: "faq-return-policy", metaTitle: "Return Policy on LetItRip", metaDescription: "Understand return policies for collectibles purchases on LetItRip." },
|
|
443
364
|
isActive: true,
|
|
444
365
|
createdBy: "user-admin-letitrip",
|
|
445
|
-
createdAt: daysAgo(
|
|
446
|
-
updatedAt: daysAgo(
|
|
366
|
+
createdAt: daysAgo(115),
|
|
367
|
+
updatedAt: daysAgo(6),
|
|
447
368
|
},
|
|
448
369
|
{
|
|
449
|
-
id: "faq-
|
|
450
|
-
question: "
|
|
451
|
-
answer: html(`<p>
|
|
370
|
+
id: "faq-how-to-request-refund",
|
|
371
|
+
question: "How do I request a refund?",
|
|
372
|
+
answer: html(`<p>Go to Account → My Orders → select the order → Request Refund. Describe the issue and upload photos if the item is damaged or not as described. The seller has 48 hours to respond. If they don't, LetItRip support will step in.</p>`),
|
|
452
373
|
category: "returns_refunds",
|
|
453
374
|
showOnHomepage: false,
|
|
454
375
|
showInFooter: false,
|
|
455
376
|
isPinned: false,
|
|
456
|
-
order:
|
|
377
|
+
order: 19,
|
|
457
378
|
priority: 8,
|
|
458
|
-
tags: ["
|
|
459
|
-
relatedFAQs: ["faq-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
stats: makeStats(2100, 118),
|
|
463
|
-
seo: { slug: "faq-what-if-seller-refuses-return" },
|
|
379
|
+
tags: ["refund", "dispute", "support"],
|
|
380
|
+
relatedFAQs: ["faq-return-policy", "faq-refund-timeline"],
|
|
381
|
+
stats: makeStats(3700, 185),
|
|
382
|
+
seo: { slug: "faq-how-to-request-refund", metaTitle: "Request a Refund", metaDescription: "How to request a refund for your LetItRip order." },
|
|
464
383
|
isActive: true,
|
|
465
384
|
createdBy: "user-admin-letitrip",
|
|
466
|
-
createdAt: daysAgo(
|
|
467
|
-
updatedAt: daysAgo(
|
|
385
|
+
createdAt: daysAgo(100),
|
|
386
|
+
updatedAt: daysAgo(11),
|
|
468
387
|
},
|
|
469
388
|
{
|
|
470
|
-
id: "faq-
|
|
471
|
-
question: "
|
|
472
|
-
answer: html(`<p>
|
|
389
|
+
id: "faq-card-not-as-described",
|
|
390
|
+
question: "What if the item I received doesn't match the listing?",
|
|
391
|
+
answer: html(`<p>If the condition, edition, brand, or any detail doesn't match what was listed, you're eligible for a full refund. Take clear photos of the item next to the listing screenshots, then open a dispute through Account → My Orders. Our team reviews disputes within 24 hours.</p>`),
|
|
473
392
|
category: "returns_refunds",
|
|
474
393
|
showOnHomepage: false,
|
|
475
394
|
showInFooter: false,
|
|
476
395
|
isPinned: false,
|
|
477
|
-
order:
|
|
396
|
+
order: 20,
|
|
478
397
|
priority: 7,
|
|
479
|
-
tags: ["
|
|
480
|
-
relatedFAQs: ["faq-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
stats: makeStats(2800, 132),
|
|
484
|
-
seo: { slug: "faq-how-long-does-refund-take" },
|
|
398
|
+
tags: ["dispute", "condition", "mismatch"],
|
|
399
|
+
relatedFAQs: ["faq-how-to-request-refund"],
|
|
400
|
+
stats: makeStats(2600, 130),
|
|
401
|
+
seo: { slug: "faq-card-not-as-described", metaTitle: "Item Not as Described", metaDescription: "What to do if your collectible doesn't match the listing on LetItRip." },
|
|
485
402
|
isActive: true,
|
|
486
403
|
createdBy: "user-admin-letitrip",
|
|
487
404
|
createdAt: daysAgo(90),
|
|
488
|
-
updatedAt: daysAgo(
|
|
405
|
+
updatedAt: daysAgo(18),
|
|
489
406
|
},
|
|
490
407
|
{
|
|
491
|
-
id: "faq-
|
|
492
|
-
question: "
|
|
493
|
-
answer: html(`<p>
|
|
408
|
+
id: "faq-refund-timeline",
|
|
409
|
+
question: "How long do refunds take?",
|
|
410
|
+
answer: html(`<p>Once a refund is approved, it's processed within 3–5 business days. UPI refunds are typically faster (1–2 days). Card and net banking refunds may take up to 7 business days depending on your bank.</p>`),
|
|
494
411
|
category: "returns_refunds",
|
|
495
412
|
showOnHomepage: false,
|
|
496
413
|
showInFooter: false,
|
|
497
414
|
isPinned: false,
|
|
498
|
-
order:
|
|
415
|
+
order: 21,
|
|
499
416
|
priority: 6,
|
|
500
|
-
tags: ["
|
|
501
|
-
relatedFAQs: ["faq-how-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
stats: makeStats(3200, 148),
|
|
505
|
-
seo: { slug: "faq-can-i-cancel-my-order" },
|
|
417
|
+
tags: ["refund", "timeline", "processing"],
|
|
418
|
+
relatedFAQs: ["faq-how-to-request-refund"],
|
|
419
|
+
stats: makeStats(2100, 105),
|
|
420
|
+
seo: { slug: "faq-refund-timeline", metaTitle: "Refund Processing Time", metaDescription: "How long refunds take on LetItRip." },
|
|
506
421
|
isActive: true,
|
|
507
422
|
createdBy: "user-admin-letitrip",
|
|
508
|
-
createdAt: daysAgo(
|
|
509
|
-
updatedAt: daysAgo(
|
|
423
|
+
createdAt: daysAgo(85),
|
|
424
|
+
updatedAt: daysAgo(22),
|
|
510
425
|
},
|
|
511
426
|
{
|
|
512
|
-
id: "faq-
|
|
513
|
-
question: "
|
|
514
|
-
answer: html(`<p>
|
|
427
|
+
id: "faq-damaged-in-transit",
|
|
428
|
+
question: "What if my item is damaged during shipping?",
|
|
429
|
+
answer: html(`<p>If an item arrives damaged due to poor packaging or courier handling, take photos immediately — before removing the item from the mailer. Open a dispute with the photos attached. Sellers are responsible for packaging quality; LetItRip will mediate if the seller disputes your claim.</p>`),
|
|
515
430
|
category: "returns_refunds",
|
|
516
431
|
showOnHomepage: false,
|
|
517
432
|
showInFooter: false,
|
|
518
433
|
isPinned: false,
|
|
519
|
-
order:
|
|
520
|
-
priority:
|
|
521
|
-
tags: ["
|
|
522
|
-
relatedFAQs: ["faq-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
stats: makeStats(2400, 126),
|
|
526
|
-
seo: { slug: "faq-how-to-raise-a-dispute" },
|
|
434
|
+
order: 22,
|
|
435
|
+
priority: 7,
|
|
436
|
+
tags: ["damaged", "shipping", "dispute"],
|
|
437
|
+
relatedFAQs: ["faq-how-are-cards-packaged", "faq-how-to-request-refund"],
|
|
438
|
+
stats: makeStats(1900, 95),
|
|
439
|
+
seo: { slug: "faq-damaged-in-transit", metaTitle: "Item Damaged in Transit", metaDescription: "What to do if your collectible arrives damaged." },
|
|
527
440
|
isActive: true,
|
|
528
441
|
createdBy: "user-admin-letitrip",
|
|
529
|
-
createdAt: daysAgo(
|
|
530
|
-
updatedAt: daysAgo(
|
|
442
|
+
createdAt: daysAgo(80),
|
|
443
|
+
updatedAt: daysAgo(25),
|
|
531
444
|
},
|
|
532
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
533
|
-
// ORDERS & PAYMENT (8 FAQs)
|
|
534
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
535
445
|
{
|
|
536
|
-
id: "faq-
|
|
537
|
-
question: "What
|
|
538
|
-
answer: html(`<p>LetItRip
|
|
539
|
-
category: "
|
|
446
|
+
id: "faq-counterfeit-guarantee",
|
|
447
|
+
question: "What if I receive a counterfeit item?",
|
|
448
|
+
answer: html(`<p>LetItRip has a <strong>zero-tolerance counterfeit policy</strong>. If you receive a counterfeit item, open a dispute with photo evidence. You'll receive a full refund and the seller's account will be reviewed for suspension. For high-value items, we recommend buying graded/certified products which come with third-party authentication.</p>`),
|
|
449
|
+
category: "returns_refunds",
|
|
540
450
|
showOnHomepage: false,
|
|
541
451
|
showInFooter: true,
|
|
542
|
-
isPinned:
|
|
543
|
-
order:
|
|
544
|
-
priority:
|
|
545
|
-
tags: ["
|
|
546
|
-
relatedFAQs: ["faq-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
stats: makeStats(5100, 248),
|
|
550
|
-
seo: { slug: "faq-what-payment-methods-are-accepted" },
|
|
452
|
+
isPinned: false,
|
|
453
|
+
order: 23,
|
|
454
|
+
priority: 9,
|
|
455
|
+
tags: ["counterfeit", "fake", "authenticity", "guarantee"],
|
|
456
|
+
relatedFAQs: ["faq-return-policy", "faq-how-to-verify-authenticity"],
|
|
457
|
+
stats: makeStats(3600, 180),
|
|
458
|
+
seo: { slug: "faq-counterfeit-guarantee", metaTitle: "Counterfeit Protection on LetItRip", metaDescription: "Zero-tolerance counterfeit policy with full refund guarantee." },
|
|
551
459
|
isActive: true,
|
|
552
460
|
createdBy: "user-admin-letitrip",
|
|
553
|
-
createdAt: daysAgo(
|
|
554
|
-
updatedAt: daysAgo(
|
|
461
|
+
createdAt: daysAgo(100),
|
|
462
|
+
updatedAt: daysAgo(7),
|
|
555
463
|
},
|
|
556
464
|
{
|
|
557
|
-
id: "faq-
|
|
558
|
-
question: "
|
|
559
|
-
answer: html(`<p>
|
|
560
|
-
category: "
|
|
465
|
+
id: "faq-partial-refund",
|
|
466
|
+
question: "Can I get a partial refund instead of a full return?",
|
|
467
|
+
answer: html(`<p>Yes — if the item is mostly as described but has a minor discrepancy (e.g., slightly different condition grade, missing an accessory), you can negotiate a partial refund with the seller through the dispute system. Both parties must agree to the partial refund amount before it's processed.</p>`),
|
|
468
|
+
category: "returns_refunds",
|
|
561
469
|
showOnHomepage: false,
|
|
562
470
|
showInFooter: false,
|
|
563
471
|
isPinned: false,
|
|
564
|
-
order:
|
|
565
|
-
priority:
|
|
566
|
-
tags: ["
|
|
567
|
-
relatedFAQs: ["faq-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
stats: makeStats(3600, 192),
|
|
571
|
-
seo: { slug: "faq-how-does-escrow-work" },
|
|
472
|
+
order: 24,
|
|
473
|
+
priority: 5,
|
|
474
|
+
tags: ["partial-refund", "negotiation", "dispute"],
|
|
475
|
+
relatedFAQs: ["faq-how-to-request-refund"],
|
|
476
|
+
stats: makeStats(800, 40),
|
|
477
|
+
seo: { slug: "faq-partial-refund", metaTitle: "Partial Refunds on LetItRip", metaDescription: "How partial refunds work on LetItRip." },
|
|
572
478
|
isActive: true,
|
|
573
479
|
createdBy: "user-admin-letitrip",
|
|
574
|
-
createdAt: daysAgo(
|
|
575
|
-
updatedAt: daysAgo(
|
|
480
|
+
createdAt: daysAgo(35),
|
|
481
|
+
updatedAt: daysAgo(10),
|
|
576
482
|
},
|
|
483
|
+
// ── ORDERS & PAYMENT (7) ──────────────────────────────────────────────────
|
|
577
484
|
{
|
|
578
|
-
id: "faq-
|
|
579
|
-
question: "
|
|
580
|
-
answer: html(`<p>
|
|
485
|
+
id: "faq-payment-methods",
|
|
486
|
+
question: "What payment methods are accepted?",
|
|
487
|
+
answer: html(`<p>LetItRip accepts UPI (GPay, PhonePe, Paytm), credit/debit cards, net banking, and wallets via Razorpay. All payments are processed through secure escrow — the seller only receives funds after you confirm delivery.</p>`),
|
|
581
488
|
category: "orders_payment",
|
|
582
489
|
showOnHomepage: false,
|
|
583
|
-
showInFooter:
|
|
490
|
+
showInFooter: true,
|
|
584
491
|
isPinned: false,
|
|
585
|
-
order:
|
|
492
|
+
order: 25,
|
|
586
493
|
priority: 8,
|
|
587
|
-
tags: ["payment", "
|
|
588
|
-
relatedFAQs: ["faq-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
stats: makeStats(2400, 108),
|
|
592
|
-
seo: { slug: "faq-is-it-safe-to-pay-on-letitrip" },
|
|
494
|
+
tags: ["payment", "upi", "razorpay", "escrow"],
|
|
495
|
+
relatedFAQs: ["faq-what-is-escrow"],
|
|
496
|
+
stats: makeStats(5100, 255),
|
|
497
|
+
seo: { slug: "faq-payment-methods", metaTitle: "Payment Methods on LetItRip", metaDescription: "UPI, cards, net banking — all payment options on LetItRip." },
|
|
593
498
|
isActive: true,
|
|
594
499
|
createdBy: "user-admin-letitrip",
|
|
595
|
-
createdAt: daysAgo(
|
|
500
|
+
createdAt: daysAgo(110),
|
|
596
501
|
updatedAt: daysAgo(6),
|
|
597
502
|
},
|
|
598
503
|
{
|
|
599
|
-
id: "faq-
|
|
600
|
-
question: "
|
|
601
|
-
answer: html(`<p
|
|
504
|
+
id: "faq-coupons-and-discounts",
|
|
505
|
+
question: "How do I use coupons and discount codes?",
|
|
506
|
+
answer: html(`<p>Enter your coupon code at checkout in the "Apply Coupon" field. Coupons may be platform-wide (from LetItRip) or store-specific (from individual sellers). Some coupons have minimum order requirements, expiry dates, or per-user limits. You cannot stack multiple coupons on a single order unless the coupon explicitly allows it.</p>`),
|
|
602
507
|
category: "orders_payment",
|
|
603
508
|
showOnHomepage: false,
|
|
604
509
|
showInFooter: false,
|
|
605
510
|
isPinned: false,
|
|
606
|
-
order:
|
|
511
|
+
order: 26,
|
|
512
|
+
priority: 6,
|
|
513
|
+
tags: ["coupons", "discount", "promo-code"],
|
|
514
|
+
relatedFAQs: ["faq-free-shipping-available"],
|
|
515
|
+
stats: makeStats(2200, 110),
|
|
516
|
+
seo: { slug: "faq-coupons-and-discounts", metaTitle: "Using Coupons on LetItRip", metaDescription: "How to apply coupons and discount codes on LetItRip." },
|
|
517
|
+
isActive: true,
|
|
518
|
+
createdBy: "user-admin-letitrip",
|
|
519
|
+
createdAt: daysAgo(75),
|
|
520
|
+
updatedAt: daysAgo(12),
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
id: "faq-order-cancellation",
|
|
524
|
+
question: "Can I cancel an order after placing it?",
|
|
525
|
+
answer: html(`<p>You can cancel an order if the seller hasn't shipped yet. Go to Account → My Orders → Cancel Order. Once the seller marks the order as shipped, cancellation is no longer available — you'll need to wait for delivery and then request a return if needed.</p>`),
|
|
526
|
+
category: "orders_payment",
|
|
527
|
+
showOnHomepage: false,
|
|
528
|
+
showInFooter: false,
|
|
529
|
+
isPinned: false,
|
|
530
|
+
order: 27,
|
|
607
531
|
priority: 7,
|
|
608
|
-
tags: ["
|
|
609
|
-
relatedFAQs: ["faq-how-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
stats: makeStats(2200, 98),
|
|
613
|
-
seo: { slug: "faq-what-are-letitrip-platform-fees" },
|
|
532
|
+
tags: ["cancel", "order", "pre-shipment"],
|
|
533
|
+
relatedFAQs: ["faq-how-to-request-refund"],
|
|
534
|
+
stats: makeStats(2800, 140),
|
|
535
|
+
seo: { slug: "faq-order-cancellation", metaTitle: "Cancel an Order on LetItRip", metaDescription: "How to cancel an order before it ships." },
|
|
614
536
|
isActive: true,
|
|
615
537
|
createdBy: "user-admin-letitrip",
|
|
616
|
-
createdAt: daysAgo(
|
|
617
|
-
updatedAt: daysAgo(
|
|
538
|
+
createdAt: daysAgo(85),
|
|
539
|
+
updatedAt: daysAgo(10),
|
|
618
540
|
},
|
|
619
541
|
{
|
|
620
|
-
id: "faq-
|
|
621
|
-
question: "
|
|
622
|
-
answer: html(`<p>
|
|
542
|
+
id: "faq-seller-fees",
|
|
543
|
+
question: "What fees does LetItRip charge sellers?",
|
|
544
|
+
answer: html(`<p>LetItRip charges a platform commission on each sale (percentage varies by category). There are no listing fees or monthly subscription charges. Payout processing fees depend on your payout method (UPI is free, bank transfer has a small fee). Check the Seller Dashboard for current fee schedules.</p>`),
|
|
623
545
|
category: "orders_payment",
|
|
624
546
|
showOnHomepage: false,
|
|
625
547
|
showInFooter: false,
|
|
626
548
|
isPinned: false,
|
|
627
|
-
order:
|
|
549
|
+
order: 28,
|
|
628
550
|
priority: 6,
|
|
629
|
-
tags: ["
|
|
630
|
-
relatedFAQs: ["faq-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
stats: makeStats(1700, 74),
|
|
634
|
-
seo: { slug: "faq-is-cod-available" },
|
|
551
|
+
tags: ["fees", "seller", "commission"],
|
|
552
|
+
relatedFAQs: ["faq-seller-payout-schedule"],
|
|
553
|
+
stats: makeStats(1600, 80),
|
|
554
|
+
seo: { slug: "faq-seller-fees", metaTitle: "Seller Fees on LetItRip", metaDescription: "Platform commission and fee structure for sellers on LetItRip." },
|
|
635
555
|
isActive: true,
|
|
636
556
|
createdBy: "user-admin-letitrip",
|
|
637
|
-
createdAt: daysAgo(
|
|
638
|
-
updatedAt: daysAgo(
|
|
557
|
+
createdAt: daysAgo(70),
|
|
558
|
+
updatedAt: daysAgo(15),
|
|
639
559
|
},
|
|
640
560
|
{
|
|
641
|
-
id: "faq-
|
|
642
|
-
question: "
|
|
643
|
-
answer: html(`<p>
|
|
561
|
+
id: "faq-seller-payout-schedule",
|
|
562
|
+
question: "When do sellers get paid?",
|
|
563
|
+
answer: html(`<p>Payouts are released after the buyer confirms delivery (or after 7 days with no dispute). Payout batches are processed weekly. You can view payout status and history in your Seller Dashboard → Payouts. The payout amount reflects the sale price minus platform commission and any refund deductions.</p>`),
|
|
644
564
|
category: "orders_payment",
|
|
645
565
|
showOnHomepage: false,
|
|
646
566
|
showInFooter: false,
|
|
647
567
|
isPinned: false,
|
|
648
|
-
order:
|
|
568
|
+
order: 29,
|
|
649
569
|
priority: 6,
|
|
650
|
-
tags: ["
|
|
651
|
-
relatedFAQs: [],
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
stats: makeStats(1900, 82),
|
|
655
|
-
seo: { slug: "faq-can-i-use-multiple-coupons" },
|
|
570
|
+
tags: ["payout", "seller", "payment-schedule"],
|
|
571
|
+
relatedFAQs: ["faq-seller-fees"],
|
|
572
|
+
stats: makeStats(1300, 65),
|
|
573
|
+
seo: { slug: "faq-seller-payout-schedule", metaTitle: "Seller Payout Schedule", metaDescription: "When and how sellers receive payouts on LetItRip." },
|
|
656
574
|
isActive: true,
|
|
657
575
|
createdBy: "user-admin-letitrip",
|
|
658
|
-
createdAt: daysAgo(
|
|
659
|
-
updatedAt: daysAgo(
|
|
576
|
+
createdAt: daysAgo(65),
|
|
577
|
+
updatedAt: daysAgo(12),
|
|
660
578
|
},
|
|
661
579
|
{
|
|
662
|
-
id: "faq-
|
|
663
|
-
question: "
|
|
664
|
-
answer: html(`<p>
|
|
580
|
+
id: "faq-payment-failed",
|
|
581
|
+
question: "My payment failed but money was deducted — what do I do?",
|
|
582
|
+
answer: html(`<p>If your payment fails but the amount is deducted, it's usually a temporary hold by your bank. The amount is auto-reversed within 24–48 hours. If it doesn't reverse after 48 hours, contact your bank with the transaction ID (available in your Razorpay receipt email) or reach out to LetItRip support.</p>`),
|
|
665
583
|
category: "orders_payment",
|
|
666
584
|
showOnHomepage: false,
|
|
667
585
|
showInFooter: false,
|
|
668
586
|
isPinned: false,
|
|
669
|
-
order:
|
|
670
|
-
priority:
|
|
671
|
-
tags: ["payment", "
|
|
672
|
-
relatedFAQs: ["faq-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
stats: makeStats(2100, 92),
|
|
676
|
-
seo: { slug: "faq-why-was-my-payment-declined" },
|
|
587
|
+
order: 30,
|
|
588
|
+
priority: 8,
|
|
589
|
+
tags: ["payment-failed", "bank-hold", "razorpay"],
|
|
590
|
+
relatedFAQs: ["faq-payment-methods"],
|
|
591
|
+
stats: makeStats(3200, 160),
|
|
592
|
+
seo: { slug: "faq-payment-failed", metaTitle: "Payment Failed but Money Deducted", metaDescription: "What to do when payment fails but bank deducts the amount." },
|
|
677
593
|
isActive: true,
|
|
678
594
|
createdBy: "user-admin-letitrip",
|
|
679
|
-
createdAt: daysAgo(
|
|
680
|
-
updatedAt: daysAgo(
|
|
595
|
+
createdAt: daysAgo(55),
|
|
596
|
+
updatedAt: daysAgo(5),
|
|
681
597
|
},
|
|
682
598
|
{
|
|
683
|
-
id: "faq-gst-invoice
|
|
684
|
-
question: "
|
|
685
|
-
answer: html(`<p>
|
|
599
|
+
id: "faq-gst-invoice",
|
|
600
|
+
question: "Do I get a GST invoice for my purchase?",
|
|
601
|
+
answer: html(`<p>Yes — invoices are auto-generated for every order. Go to Account → My Orders → click the order → Download Invoice. Sellers who are GST-registered include GST details on the invoice. For bulk/business purchases, contact the seller directly to arrange GST billing.</p>`),
|
|
686
602
|
category: "orders_payment",
|
|
687
603
|
showOnHomepage: false,
|
|
688
604
|
showInFooter: false,
|
|
689
605
|
isPinned: false,
|
|
690
|
-
order:
|
|
606
|
+
order: 31,
|
|
691
607
|
priority: 5,
|
|
692
|
-
tags: ["gst", "invoice", "
|
|
608
|
+
tags: ["gst", "invoice", "tax"],
|
|
693
609
|
relatedFAQs: [],
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
stats: makeStats(1100, 48),
|
|
697
|
-
seo: { slug: "faq-gst-invoice-for-my-order" },
|
|
610
|
+
stats: makeStats(900, 45),
|
|
611
|
+
seo: { slug: "faq-gst-invoice", metaTitle: "GST Invoice on LetItRip", metaDescription: "How to get a GST invoice for your LetItRip purchase." },
|
|
698
612
|
isActive: true,
|
|
699
613
|
createdBy: "user-admin-letitrip",
|
|
700
|
-
createdAt: daysAgo(
|
|
614
|
+
createdAt: daysAgo(40),
|
|
701
615
|
updatedAt: daysAgo(10),
|
|
702
616
|
},
|
|
703
|
-
//
|
|
704
|
-
// PRODUCT INFORMATION (8 FAQs)
|
|
705
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
617
|
+
// ── PRODUCT INFORMATION (8) ───────────────────────────────────────────────
|
|
706
618
|
{
|
|
707
|
-
id: "faq-how-
|
|
708
|
-
question: "How
|
|
709
|
-
answer: html(`<p>
|
|
619
|
+
id: "faq-how-to-verify-authenticity",
|
|
620
|
+
question: "How can I verify if a collectible is authentic?",
|
|
621
|
+
answer: html(`<p>Look for these trust signals on LetItRip: <strong>Verified Seller</strong> badge (store has passed manual review), <strong>Graded</strong> badge (PSA/BGS/CGC certified with certificate number), <strong>Sealed</strong> badge (factory-sealed product). For ungraded items, check the seller's photo quality and description detail. If in doubt, message the seller before purchasing.</p>`),
|
|
710
622
|
category: "product_information",
|
|
711
|
-
showOnHomepage:
|
|
712
|
-
showInFooter: false,
|
|
713
|
-
isPinned: true,
|
|
714
|
-
order: 1,
|
|
715
|
-
priority: 10,
|
|
716
|
-
tags: ["pre-order", "deposit", "how-to"],
|
|
717
|
-
relatedFAQs: ["faq-can-i-cancel-a-pre-order", "faq-what-if-preorder-delayed"],
|
|
718
|
-
useSiteSettings: true,
|
|
719
|
-
variables: {},
|
|
720
|
-
stats: makeStats(4700, 224),
|
|
721
|
-
seo: {
|
|
722
|
-
slug: "faq-how-do-pre-orders-work",
|
|
723
|
-
metaTitle: "How Do Pre-Orders Work on LetItRip?",
|
|
724
|
-
metaDescription: "Pre-orders on LetItRip let you reserve upcoming Pokémon, Beyblade X, and anime figures with a deposit.",
|
|
725
|
-
},
|
|
726
|
-
isActive: true,
|
|
727
|
-
createdBy: "user-admin-letitrip",
|
|
728
|
-
createdAt: daysAgo(90),
|
|
729
|
-
updatedAt: daysAgo(2),
|
|
730
|
-
},
|
|
731
|
-
{
|
|
732
|
-
id: "faq-can-i-cancel-a-pre-order",
|
|
733
|
-
question: "Can I cancel a pre-order?",
|
|
734
|
-
answer: html(`<p>You can cancel a pre-order <strong>before the seller marks it "In Production"</strong> — your deposit is fully refunded within 5 business days. After "In Production" status, cancellation may result in the deposit being forfeited (this is disclosed on the listing before you pay).</p><p>If the estimated delivery date shifts by more than 60 days, LetItRip gives you a 7-day window to cancel with a full deposit refund regardless of production status.</p>`),
|
|
735
|
-
category: "product_information",
|
|
736
|
-
showOnHomepage: false,
|
|
623
|
+
showOnHomepage: false,
|
|
737
624
|
showInFooter: false,
|
|
738
625
|
isPinned: false,
|
|
739
|
-
order:
|
|
626
|
+
order: 32,
|
|
740
627
|
priority: 8,
|
|
741
|
-
tags: ["
|
|
742
|
-
relatedFAQs: ["faq-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
stats: makeStats(2900, 134),
|
|
746
|
-
seo: { slug: "faq-can-i-cancel-a-pre-order" },
|
|
628
|
+
tags: ["authentication", "verification", "trust"],
|
|
629
|
+
relatedFAQs: ["faq-counterfeit-guarantee", "faq-psa-vs-bgs-vs-cgc"],
|
|
630
|
+
stats: makeStats(3800, 190),
|
|
631
|
+
seo: { slug: "faq-how-to-verify-authenticity", metaTitle: "Verify Collectible Authenticity", metaDescription: "How to verify if a collectible is authentic on LetItRip." },
|
|
747
632
|
isActive: true,
|
|
748
633
|
createdBy: "user-admin-letitrip",
|
|
749
|
-
createdAt: daysAgo(
|
|
750
|
-
updatedAt: daysAgo(
|
|
634
|
+
createdAt: daysAgo(90),
|
|
635
|
+
updatedAt: daysAgo(15),
|
|
751
636
|
},
|
|
752
637
|
{
|
|
753
|
-
id: "faq-
|
|
754
|
-
question: "What
|
|
755
|
-
answer: html(`<p>
|
|
638
|
+
id: "faq-psa-vs-bgs-vs-cgc",
|
|
639
|
+
question: "What's the difference between PSA, BGS, and CGC grading?",
|
|
640
|
+
answer: html(`<p><strong>PSA</strong> (Professional Sports Authenticator) uses a 1–10 scale and is the most widely recognized for trading cards. <strong>BGS</strong> (Beckett Grading Services) uses sub-grades for centering, surface, edges, and corners — a BGS 10 "Pristine" or "Black Label" is the highest standard. <strong>CGC</strong> (Certified Guaranty Company) is newer to cards but growing in popularity, also uses sub-grades. All three are trusted; PSA tends to command the highest resale premiums.</p>`),
|
|
756
641
|
category: "product_information",
|
|
757
642
|
showOnHomepage: false,
|
|
758
643
|
showInFooter: false,
|
|
759
644
|
isPinned: false,
|
|
760
|
-
order:
|
|
645
|
+
order: 33,
|
|
761
646
|
priority: 7,
|
|
762
|
-
tags: ["
|
|
763
|
-
relatedFAQs: ["faq-how-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
stats: makeStats(2100, 94),
|
|
767
|
-
seo: { slug: "faq-what-if-preorder-delayed" },
|
|
647
|
+
tags: ["grading", "psa", "bgs", "cgc", "trading-cards"],
|
|
648
|
+
relatedFAQs: ["faq-how-to-verify-authenticity"],
|
|
649
|
+
stats: makeStats(4600, 230),
|
|
650
|
+
seo: { slug: "faq-psa-vs-bgs-vs-cgc", metaTitle: "PSA vs BGS vs CGC Grading", metaDescription: "Compare PSA, BGS, and CGC grading services for trading cards." },
|
|
768
651
|
isActive: true,
|
|
769
652
|
createdBy: "user-admin-letitrip",
|
|
770
653
|
createdAt: daysAgo(85),
|
|
771
|
-
updatedAt: daysAgo(
|
|
654
|
+
updatedAt: daysAgo(10),
|
|
772
655
|
},
|
|
773
656
|
{
|
|
774
|
-
id: "faq-
|
|
775
|
-
question: "
|
|
776
|
-
answer: html(`<p>
|
|
657
|
+
id: "faq-how-to-verify-1st-edition",
|
|
658
|
+
question: "How do I know if a Yu-Gi-Oh! card is 1st Edition?",
|
|
659
|
+
answer: html(`<p>1st Edition cards have a gold "1st Edition" stamp below the card artwork on the left side. On older cards (LOB, MRD era), the stamp is more prominent. Unlimited prints lack this stamp. For graded cards, the PSA/BGS/CGC label will indicate "1ST EDITION" in the certification details.</p>`),
|
|
777
660
|
category: "product_information",
|
|
778
661
|
showOnHomepage: false,
|
|
779
662
|
showInFooter: false,
|
|
780
663
|
isPinned: false,
|
|
781
|
-
order:
|
|
664
|
+
order: 34,
|
|
782
665
|
priority: 6,
|
|
783
|
-
tags: ["
|
|
784
|
-
relatedFAQs: ["faq-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
stats: makeStats(1500, 66),
|
|
788
|
-
seo: { slug: "faq-are-preorder-products-authentic" },
|
|
666
|
+
tags: ["authentication", "1st-edition", "ygo", "grading"],
|
|
667
|
+
relatedFAQs: ["faq-psa-vs-bgs-vs-cgc"],
|
|
668
|
+
stats: makeStats(3800, 190),
|
|
669
|
+
seo: { slug: "faq-how-to-verify-1st-edition", metaTitle: "Identify 1st Edition YGO Cards", metaDescription: "How to verify if your Yu-Gi-Oh! card is a genuine 1st Edition." },
|
|
789
670
|
isActive: true,
|
|
790
671
|
createdBy: "user-admin-letitrip",
|
|
791
|
-
createdAt: daysAgo(
|
|
792
|
-
updatedAt: daysAgo(
|
|
672
|
+
createdAt: daysAgo(90),
|
|
673
|
+
updatedAt: daysAgo(15),
|
|
793
674
|
},
|
|
794
675
|
{
|
|
795
|
-
id: "faq-
|
|
796
|
-
question: "What
|
|
797
|
-
answer: html(`<p>
|
|
676
|
+
id: "faq-condition-grading-guide",
|
|
677
|
+
question: "What do condition grades like NM, LP, MP mean?",
|
|
678
|
+
answer: html(`<p>Sellers use standard condition grades for ungraded items: <strong>NM</strong> (Near Mint) — virtually perfect, minimal handling wear. <strong>LP</strong> (Lightly Played) — minor edge wear, small scratches. <strong>MP</strong> (Moderately Played) — visible wear, light creasing. <strong>HP</strong> (Heavily Played) — significant wear, creases, whitening. <strong>Sealed</strong> — factory sealed, never opened. Always check the seller's photos for the actual condition.</p>`),
|
|
798
679
|
category: "product_information",
|
|
799
680
|
showOnHomepage: false,
|
|
800
681
|
showInFooter: false,
|
|
801
682
|
isPinned: false,
|
|
802
|
-
order:
|
|
683
|
+
order: 35,
|
|
803
684
|
priority: 7,
|
|
804
|
-
tags: ["condition", "grading", "
|
|
805
|
-
relatedFAQs: ["faq-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
stats: makeStats(1800, 84),
|
|
809
|
-
seo: { slug: "faq-what-condition-grades-does-letitrip-use" },
|
|
685
|
+
tags: ["condition", "grading", "nm", "lp", "mp"],
|
|
686
|
+
relatedFAQs: ["faq-how-to-verify-authenticity"],
|
|
687
|
+
stats: makeStats(2900, 145),
|
|
688
|
+
seo: { slug: "faq-condition-grading-guide", metaTitle: "Condition Grading Guide", metaDescription: "What NM, LP, MP condition grades mean for collectibles on LetItRip." },
|
|
810
689
|
isActive: true,
|
|
811
690
|
createdBy: "user-admin-letitrip",
|
|
812
|
-
createdAt: daysAgo(
|
|
813
|
-
updatedAt: daysAgo(
|
|
691
|
+
createdAt: daysAgo(70),
|
|
692
|
+
updatedAt: daysAgo(12),
|
|
814
693
|
},
|
|
815
694
|
{
|
|
816
|
-
id: "faq-
|
|
817
|
-
question: "
|
|
818
|
-
answer: html(`<p
|
|
695
|
+
id: "faq-beyblade-compatibility",
|
|
696
|
+
question: "Are Beyblade parts compatible across different series?",
|
|
697
|
+
answer: html(`<p><strong>Beyblade X</strong> parts are NOT compatible with Burst or older systems — different launcher and layer design. <strong>Burst</strong> layers, discs, and drivers are cross-compatible within the Burst line (standard, superking, dynamite battle, BU). <strong>Metal Saga</strong> (Metal Fusion/Masters/Fury) parts interchange within that line. Always check the listing's "Compatible System" tag before purchasing.</p>`),
|
|
819
698
|
category: "product_information",
|
|
820
699
|
showOnHomepage: false,
|
|
821
700
|
showInFooter: false,
|
|
822
701
|
isPinned: false,
|
|
823
|
-
order:
|
|
824
|
-
priority:
|
|
825
|
-
tags: ["
|
|
826
|
-
relatedFAQs: ["faq-what-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
stats: makeStats(2400, 114),
|
|
830
|
-
seo: { slug: "faq-what-is-a-graded-slab-psa-bgs" },
|
|
831
|
-
isActive: true,
|
|
832
|
-
createdBy: "user-admin-letitrip",
|
|
833
|
-
createdAt: daysAgo(83),
|
|
834
|
-
updatedAt: daysAgo(5),
|
|
835
|
-
},
|
|
836
|
-
{
|
|
837
|
-
id: "faq-how-to-spot-fake-pokemon-cards-authentication",
|
|
838
|
-
question: "How do I spot fake Pokémon cards and authenticate collectibles?",
|
|
839
|
-
answer: html(`<p>Counterfeit collectibles are a real risk in secondary markets. Here's how to protect yourself on LetItRip and in general:</p><p><strong>Pokémon Cards:</strong></p><ul><li><strong>Light test</strong> — hold the card up to a bright light. Genuine cards have a black layer in the middle that blocks most light; fakes are often lighter or fully translucent.</li><li><strong>Bend test</strong> — real cards have a slight snap and return to shape. Fakes feel flimsy or don't snap back. (Only do this on cards you already own.)</li><li><strong>Print quality</strong> — genuine cards have sharp, fine printing; fakes often show dot patterns, blurry text, or washed-out colours.</li><li><strong>Rip test</strong> — genuine cards have a distinctive black inner layer. Never do this to a card you're buying — ask the seller for a light test video.</li></ul><p><strong>Graded Slabs:</strong></p><ul><li>Verify the cert number on PSA's, BGS's, or CGC's official website before paying.</li><li>Inspect the slab for tampering — the label should be sealed inside with no gaps.</li></ul><p><strong>Hot Wheels Redlines / Vintage:</strong></p><ul><li>Repainted castings are common — look for matching wheel colours, original tampos (decals), and period-correct packaging.</li></ul><p>If you're unsure about a listing, ask the seller for additional photos or a video authentication. Sellers on LetItRip are required to respond to authentication requests within 24 hours.</p>`),
|
|
840
|
-
category: "product_information",
|
|
841
|
-
showOnHomepage: true,
|
|
842
|
-
showInFooter: false,
|
|
843
|
-
isPinned: false,
|
|
844
|
-
order: 7,
|
|
845
|
-
priority: 8,
|
|
846
|
-
tags: ["fake", "counterfeit", "pokemon", "authentication", "graded-slab"],
|
|
847
|
-
relatedFAQs: ["faq-how-do-i-report-a-fake-item", "faq-what-is-a-graded-slab-psa-bgs"],
|
|
848
|
-
useSiteSettings: true,
|
|
849
|
-
variables: {},
|
|
850
|
-
stats: makeStats(5200, 278),
|
|
851
|
-
seo: {
|
|
852
|
-
slug: "faq-how-to-spot-fake-pokemon-cards-authentication",
|
|
853
|
-
metaTitle: "How to Spot Fake Pokémon Cards and Authenticate Collectibles",
|
|
854
|
-
metaDescription: "Light test, print quality, graded slab cert checks — a buyer's guide to authenticating Pokémon cards, slabs, and collectibles.",
|
|
855
|
-
},
|
|
702
|
+
order: 36,
|
|
703
|
+
priority: 6,
|
|
704
|
+
tags: ["beyblade", "compatibility", "parts", "spinning-tops"],
|
|
705
|
+
relatedFAQs: ["faq-what-categories-available"],
|
|
706
|
+
stats: makeStats(1600, 80),
|
|
707
|
+
seo: { slug: "faq-beyblade-compatibility", metaTitle: "Beyblade Part Compatibility", metaDescription: "Which Beyblade parts are compatible across series — X, Burst, and Metal Saga." },
|
|
856
708
|
isActive: true,
|
|
857
709
|
createdBy: "user-admin-letitrip",
|
|
858
|
-
createdAt: daysAgo(
|
|
859
|
-
updatedAt: daysAgo(
|
|
710
|
+
createdAt: daysAgo(50),
|
|
711
|
+
updatedAt: daysAgo(8),
|
|
860
712
|
},
|
|
861
713
|
{
|
|
862
|
-
id: "faq-
|
|
863
|
-
question: "
|
|
864
|
-
answer: html(`<p><strong>
|
|
714
|
+
id: "faq-hot-wheels-treasure-hunt",
|
|
715
|
+
question: "How do I identify Hot Wheels Treasure Hunts and Supers?",
|
|
716
|
+
answer: html(`<p><strong>Regular Treasure Hunts</strong> have a small flame logo on the card. <strong>Super Treasure Hunts (STH)</strong> have Spectraflame paint (metallic/candy-colored), Real Riders rubber tires, and a "TH" logo somewhere on the car. STHs are rare (1 in ~15 cases) and command premium prices. Sellers on LetItRip mark STHs with a "Super Treasure Hunt" badge.</p>`),
|
|
865
717
|
category: "product_information",
|
|
866
718
|
showOnHomepage: false,
|
|
867
719
|
showInFooter: false,
|
|
868
720
|
isPinned: false,
|
|
869
|
-
order:
|
|
721
|
+
order: 37,
|
|
870
722
|
priority: 6,
|
|
871
|
-
tags: ["
|
|
872
|
-
relatedFAQs: ["faq-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
stats: makeStats(3800, 178),
|
|
876
|
-
seo: {
|
|
877
|
-
slug: "faq-what-is-beyblade-x",
|
|
878
|
-
metaTitle: "What is Beyblade X? Buy Official Takara Tomy in India",
|
|
879
|
-
metaDescription: "Beyblade X is the latest Beyblade generation. Buy official Takara Tomy imports in India on LetItRip.",
|
|
880
|
-
},
|
|
881
|
-
isActive: true,
|
|
882
|
-
createdBy: "user-admin-letitrip",
|
|
883
|
-
createdAt: daysAgo(78),
|
|
884
|
-
updatedAt: daysAgo(4),
|
|
885
|
-
},
|
|
886
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
887
|
-
// ACCOUNT & SECURITY (7 FAQs)
|
|
888
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
889
|
-
{
|
|
890
|
-
id: "faq-how-do-i-create-an-account",
|
|
891
|
-
question: "How do I create a LetItRip account?",
|
|
892
|
-
answer: html(`<p>Creating a LetItRip account is free and takes under a minute:</p><ol><li>Click <strong>Sign Up</strong> on any page.</li><li>Enter your email address and create a password, or sign up with Google.</li><li>Verify your email address — we send a verification link immediately.</li><li>Complete your profile (display name, optional phone number for WhatsApp updates).</li></ol><p>You can browse and wishlist items without an account, but you need an account to buy, bid, or sell. Phone verification is required for COD orders and bidding on auctions above ₹5,000.</p>`),
|
|
893
|
-
category: "account_security",
|
|
894
|
-
showOnHomepage: false,
|
|
895
|
-
showInFooter: false,
|
|
896
|
-
isPinned: false,
|
|
897
|
-
order: 1,
|
|
898
|
-
priority: 8,
|
|
899
|
-
tags: ["account", "sign-up", "register"],
|
|
900
|
-
relatedFAQs: ["faq-how-do-i-become-a-verified-seller"],
|
|
901
|
-
useSiteSettings: true,
|
|
902
|
-
variables: {},
|
|
903
|
-
stats: makeStats(2200, 98),
|
|
904
|
-
seo: { slug: "faq-how-do-i-create-an-account" },
|
|
905
|
-
isActive: true,
|
|
906
|
-
createdBy: "user-admin-letitrip",
|
|
907
|
-
createdAt: daysAgo(88),
|
|
908
|
-
updatedAt: daysAgo(6),
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
id: "faq-how-do-i-become-a-verified-seller",
|
|
912
|
-
question: "How do I become a verified seller on LetItRip?",
|
|
913
|
-
answer: html(`<p>Selling on LetItRip requires manual verification — we review every store before approval. To apply:</p><ol><li>Go to My Account → <strong>Become a Seller</strong>.</li><li>Fill in your store details: store name, category, bio, and shipping policy.</li><li>Complete KYC: submit a government-issued ID (Aadhaar, PAN, or passport) and a selfie for identity verification.</li><li>Provide bank account or UPI details for payouts.</li><li>Our team reviews your application within 2–3 business days and approves or requests more information.</li></ol><p>Approval criteria include: valid KYC documents, a credible store description, and no history of fraudulent activity on LetItRip or associated platforms. Individual sellers and small businesses are both welcome.</p>`),
|
|
914
|
-
category: "account_security",
|
|
915
|
-
showOnHomepage: false,
|
|
916
|
-
showInFooter: true,
|
|
917
|
-
isPinned: false,
|
|
918
|
-
order: 2,
|
|
919
|
-
priority: 9,
|
|
920
|
-
tags: ["seller", "verification", "kyc", "store"],
|
|
921
|
-
relatedFAQs: ["faq-what-is-kyc-verification", "faq-how-do-seller-payouts-work"],
|
|
922
|
-
useSiteSettings: true,
|
|
923
|
-
variables: {},
|
|
924
|
-
stats: makeStats(3100, 148),
|
|
925
|
-
seo: {
|
|
926
|
-
slug: "faq-how-do-i-become-a-verified-seller",
|
|
927
|
-
metaTitle: "How to Become a Verified Seller on LetItRip",
|
|
928
|
-
metaDescription: "Apply to sell collectibles on LetItRip. Manual KYC verification and 2–3 day approval for Indian sellers.",
|
|
929
|
-
},
|
|
930
|
-
isActive: true,
|
|
931
|
-
createdBy: "user-admin-letitrip",
|
|
932
|
-
createdAt: daysAgo(87),
|
|
933
|
-
updatedAt: daysAgo(4),
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
id: "faq-what-is-kyc-verification",
|
|
937
|
-
question: "What is KYC verification and why is it required?",
|
|
938
|
-
answer: html(`<p>KYC (Know Your Customer) is a mandatory identity verification process required by Indian financial regulations for any platform that processes payments. LetItRip requires KYC for sellers (to enable payouts) and for buyers making high-value purchases or COD orders above ₹5,000.</p><p><strong>What KYC involves:</strong></p><ul><li>A government-issued photo ID (Aadhaar card, PAN card, or passport)</li><li>A selfie for liveness verification</li><li>Bank account or UPI details (sellers only, for payouts)</li></ul><p>Your KYC data is stored encrypted and is never shared with sellers, buyers, or third parties beyond what is required by law. LetItRip uses a DPDP-compliant document verification partner.</p>`),
|
|
939
|
-
category: "account_security",
|
|
940
|
-
showOnHomepage: false,
|
|
941
|
-
showInFooter: false,
|
|
942
|
-
isPinned: false,
|
|
943
|
-
order: 3,
|
|
944
|
-
priority: 7,
|
|
945
|
-
tags: ["kyc", "verification", "identity", "aadhaar"],
|
|
946
|
-
relatedFAQs: ["faq-how-do-i-become-a-verified-seller"],
|
|
947
|
-
useSiteSettings: true,
|
|
948
|
-
variables: {},
|
|
949
|
-
stats: makeStats(1900, 88),
|
|
950
|
-
seo: { slug: "faq-what-is-kyc-verification" },
|
|
723
|
+
tags: ["hot-wheels", "treasure-hunt", "sth", "diecast"],
|
|
724
|
+
relatedFAQs: ["faq-what-categories-available"],
|
|
725
|
+
stats: makeStats(2100, 105),
|
|
726
|
+
seo: { slug: "faq-hot-wheels-treasure-hunt", metaTitle: "Hot Wheels Treasure Hunt Guide", metaDescription: "How to identify regular and Super Treasure Hunt Hot Wheels." },
|
|
951
727
|
isActive: true,
|
|
952
728
|
createdBy: "user-admin-letitrip",
|
|
953
|
-
createdAt: daysAgo(
|
|
954
|
-
updatedAt: daysAgo(
|
|
729
|
+
createdAt: daysAgo(45),
|
|
730
|
+
updatedAt: daysAgo(10),
|
|
955
731
|
},
|
|
956
732
|
{
|
|
957
|
-
id: "faq-
|
|
958
|
-
question: "
|
|
959
|
-
answer: html(`<p>
|
|
960
|
-
category: "
|
|
733
|
+
id: "faq-funko-pop-exclusives",
|
|
734
|
+
question: "Are Funko Pop exclusives available on LetItRip?",
|
|
735
|
+
answer: html(`<p>Yes — verified sellers list convention exclusives (SDCC, NYCC, Funko Fair), store exclusives (Amazon, Hot Topic, BoxLunch), and chase variants. Look for the "Exclusive" or "Chase" badge on listings. All Funko Pops include the pop number and series in the listing title for easy search.</p>`),
|
|
736
|
+
category: "product_information",
|
|
961
737
|
showOnHomepage: false,
|
|
962
738
|
showInFooter: false,
|
|
963
739
|
isPinned: false,
|
|
964
|
-
order:
|
|
965
|
-
priority:
|
|
966
|
-
tags: ["
|
|
967
|
-
relatedFAQs: ["faq-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
stats: makeStats(1400, 64),
|
|
971
|
-
seo: { slug: "faq-how-do-i-reset-my-password" },
|
|
740
|
+
order: 38,
|
|
741
|
+
priority: 5,
|
|
742
|
+
tags: ["funko", "pop", "exclusive", "chase", "action-figures"],
|
|
743
|
+
relatedFAQs: ["faq-what-categories-available"],
|
|
744
|
+
stats: makeStats(1300, 65),
|
|
745
|
+
seo: { slug: "faq-funko-pop-exclusives", metaTitle: "Funko Pop Exclusives on LetItRip", metaDescription: "Find convention and store exclusive Funko Pops on LetItRip." },
|
|
972
746
|
isActive: true,
|
|
973
747
|
createdBy: "user-admin-letitrip",
|
|
974
|
-
createdAt: daysAgo(
|
|
748
|
+
createdAt: daysAgo(35),
|
|
975
749
|
updatedAt: daysAgo(7),
|
|
976
750
|
},
|
|
977
751
|
{
|
|
978
|
-
id: "faq-
|
|
979
|
-
question: "
|
|
980
|
-
answer: html(`<p><strong>
|
|
981
|
-
category: "
|
|
752
|
+
id: "faq-gundam-grade-differences",
|
|
753
|
+
question: "What's the difference between HG, MG, RG, and PG Gundam kits?",
|
|
754
|
+
answer: html(`<p><strong>HG</strong> (High Grade, 1/144) — beginner-friendly, ~100 parts. <strong>RG</strong> (Real Grade, 1/144) — high detail at small scale, ~200 parts. <strong>MG</strong> (Master Grade, 1/100) — detailed inner frame, ~400 parts, intermediate. <strong>PG</strong> (Perfect Grade, 1/60) — premium, ~800+ parts, LED-ready. All Bandai kits on LetItRip list the grade, scale, and part count in the product details.</p>`),
|
|
755
|
+
category: "product_information",
|
|
982
756
|
showOnHomepage: false,
|
|
983
757
|
showInFooter: false,
|
|
984
758
|
isPinned: false,
|
|
985
|
-
order:
|
|
759
|
+
order: 39,
|
|
986
760
|
priority: 5,
|
|
987
|
-
tags: ["
|
|
988
|
-
relatedFAQs: [],
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
stats: makeStats(820, 36),
|
|
992
|
-
seo: { slug: "faq-can-i-have-multiple-accounts" },
|
|
761
|
+
tags: ["gundam", "model-kits", "bandai", "hg", "mg", "rg", "pg"],
|
|
762
|
+
relatedFAQs: ["faq-what-categories-available"],
|
|
763
|
+
stats: makeStats(1700, 85),
|
|
764
|
+
seo: { slug: "faq-gundam-grade-differences", metaTitle: "Gundam Kit Grades Explained", metaDescription: "HG vs MG vs RG vs PG — understand Gundam model kit grades on LetItRip." },
|
|
993
765
|
isActive: true,
|
|
994
766
|
createdBy: "user-admin-letitrip",
|
|
995
|
-
createdAt: daysAgo(
|
|
767
|
+
createdAt: daysAgo(40),
|
|
996
768
|
updatedAt: daysAgo(8),
|
|
997
769
|
},
|
|
770
|
+
// ── AUCTIONS (5) ──────────────────────────────────────────────────────────
|
|
998
771
|
{
|
|
999
|
-
id: "faq-how-
|
|
1000
|
-
question: "How
|
|
1001
|
-
answer: html(`<p>
|
|
1002
|
-
category: "
|
|
1003
|
-
showOnHomepage: false,
|
|
1004
|
-
showInFooter: false,
|
|
1005
|
-
isPinned: false,
|
|
1006
|
-
order: 6,
|
|
1007
|
-
priority: 5,
|
|
1008
|
-
tags: ["delete", "account", "privacy"],
|
|
1009
|
-
relatedFAQs: [],
|
|
1010
|
-
useSiteSettings: true,
|
|
1011
|
-
variables: {},
|
|
1012
|
-
stats: makeStats(740, 32),
|
|
1013
|
-
seo: { slug: "faq-how-do-i-delete-my-account" },
|
|
1014
|
-
isActive: true,
|
|
1015
|
-
createdBy: "user-admin-letitrip",
|
|
1016
|
-
createdAt: daysAgo(82),
|
|
1017
|
-
updatedAt: daysAgo(9),
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
id: "faq-how-do-i-protect-my-account",
|
|
1021
|
-
question: "How do I keep my LetItRip account secure?",
|
|
1022
|
-
answer: html(`<p>Best practices for account security on LetItRip:</p><ul><li><strong>Use a strong, unique password</strong> — don't reuse passwords from other sites.</li><li><strong>Enable 2-Step Verification</strong> (2FA) in My Account → Settings → Security. We support SMS OTP and authenticator apps.</li><li><strong>Never share your login details</strong> — LetItRip support will never ask for your password.</li><li><strong>Watch for phishing</strong> — all official LetItRip emails come from @letitrip.in. Be suspicious of any message asking you to click a payment link outside the platform.</li><li><strong>Never pay outside LetItRip</strong> — if a seller asks you to UPI them directly or use a third-party app, report it immediately. Off-platform payments are not covered by escrow.</li></ul><p>If you suspect your account has been compromised, change your password immediately and contact <strong>support@letitrip.in</strong>.</p>`),
|
|
1023
|
-
category: "account_security",
|
|
1024
|
-
showOnHomepage: false,
|
|
1025
|
-
showInFooter: false,
|
|
1026
|
-
isPinned: false,
|
|
1027
|
-
order: 7,
|
|
1028
|
-
priority: 7,
|
|
1029
|
-
tags: ["security", "2fa", "phishing", "password"],
|
|
1030
|
-
relatedFAQs: ["faq-how-do-i-reset-my-password"],
|
|
1031
|
-
useSiteSettings: true,
|
|
1032
|
-
variables: {},
|
|
1033
|
-
stats: makeStats(1200, 56),
|
|
1034
|
-
seo: { slug: "faq-how-do-i-protect-my-account" },
|
|
1035
|
-
isActive: true,
|
|
1036
|
-
createdBy: "user-admin-letitrip",
|
|
1037
|
-
createdAt: daysAgo(81),
|
|
1038
|
-
updatedAt: daysAgo(6),
|
|
1039
|
-
},
|
|
1040
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
1041
|
-
// TECHNICAL SUPPORT (7 FAQs)
|
|
1042
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
1043
|
-
{
|
|
1044
|
-
id: "faq-app-not-loading",
|
|
1045
|
-
question: "The LetItRip website or app is not loading — what should I do?",
|
|
1046
|
-
answer: html(`<p>Try these steps in order:</p><ol><li><strong>Refresh the page</strong> and wait 10 seconds — brief server timeouts are usually self-resolving.</li><li><strong>Clear your browser cache</strong> (Ctrl+Shift+R on desktop; Safari → Settings → Clear History on iOS).</li><li><strong>Check your internet connection</strong> — try loading another website or switching between WiFi and mobile data.</li><li><strong>Disable browser extensions</strong> — ad blockers occasionally interfere with our checkout flow.</li><li><strong>Try a different browser</strong> — LetItRip works best on Chrome, Firefox, and Safari (latest versions).</li></ol><p>If the issue persists, check our status page or email <strong>support@letitrip.in</strong> describing the error (screenshot if possible) and your browser/device details.</p>`),
|
|
1047
|
-
category: "technical_support",
|
|
772
|
+
id: "faq-how-does-bidding-work",
|
|
773
|
+
question: "How does bidding work on LetItRip?",
|
|
774
|
+
answer: html(`<p>Place a bid on any active auction listing. You'll be notified if you're outbid. When the auction ends, the highest bidder wins. Some auctions have a Buy It Now (BIN) price — you can skip bidding and purchase immediately at the BIN price. Auctions auto-extend by 2 minutes if a bid is placed in the final 2 minutes to prevent sniping.</p>`),
|
|
775
|
+
category: "general",
|
|
1048
776
|
showOnHomepage: false,
|
|
1049
|
-
showInFooter:
|
|
777
|
+
showInFooter: true,
|
|
1050
778
|
isPinned: false,
|
|
1051
|
-
order:
|
|
1052
|
-
priority:
|
|
1053
|
-
tags: ["
|
|
1054
|
-
relatedFAQs: ["faq-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
stats: makeStats(1100, 48),
|
|
1058
|
-
seo: { slug: "faq-app-not-loading" },
|
|
779
|
+
order: 40,
|
|
780
|
+
priority: 8,
|
|
781
|
+
tags: ["auction", "bidding", "bin", "auto-extend"],
|
|
782
|
+
relatedFAQs: ["faq-auction-ending-rules", "faq-can-i-cancel-bid"],
|
|
783
|
+
stats: makeStats(4200, 210),
|
|
784
|
+
seo: { slug: "faq-how-does-bidding-work", metaTitle: "How Bidding Works", metaDescription: "Learn how to bid on collectibles auctions on LetItRip." },
|
|
1059
785
|
isActive: true,
|
|
1060
786
|
createdBy: "user-admin-letitrip",
|
|
1061
|
-
createdAt: daysAgo(
|
|
1062
|
-
updatedAt: daysAgo(
|
|
787
|
+
createdAt: daysAgo(105),
|
|
788
|
+
updatedAt: daysAgo(8),
|
|
1063
789
|
},
|
|
1064
790
|
{
|
|
1065
|
-
id: "faq-
|
|
1066
|
-
question: "
|
|
1067
|
-
answer: html(`<p>
|
|
1068
|
-
category: "
|
|
791
|
+
id: "faq-auction-ending-rules",
|
|
792
|
+
question: "What happens when an auction ends?",
|
|
793
|
+
answer: html(`<p>The highest bidder wins. You'll receive a notification and the item is added to your checkout. You have 48 hours to complete payment. If you don't pay within 48 hours, the auction may be offered to the next highest bidder.</p>`),
|
|
794
|
+
category: "general",
|
|
1069
795
|
showOnHomepage: false,
|
|
1070
796
|
showInFooter: false,
|
|
1071
797
|
isPinned: false,
|
|
1072
|
-
order:
|
|
798
|
+
order: 41,
|
|
1073
799
|
priority: 7,
|
|
1074
|
-
tags: ["
|
|
1075
|
-
relatedFAQs: ["faq-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
stats: makeStats(1600, 72),
|
|
1079
|
-
seo: { slug: "faq-why-was-my-listing-rejected" },
|
|
1080
|
-
isActive: true,
|
|
1081
|
-
createdBy: "user-admin-letitrip",
|
|
1082
|
-
createdAt: daysAgo(79),
|
|
1083
|
-
updatedAt: daysAgo(5),
|
|
1084
|
-
},
|
|
1085
|
-
{
|
|
1086
|
-
id: "faq-how-do-i-upload-product-images",
|
|
1087
|
-
question: "What are the image requirements for listings?",
|
|
1088
|
-
answer: html(`<p>Image requirements for all LetItRip listings:</p><ul><li><strong>Minimum 3 photos</strong> — front, back, and at least one close-up of condition-relevant areas</li><li><strong>Format</strong>: JPG or PNG, minimum 800×800px, maximum 20MB per image</li><li><strong>Background</strong>: clean, neutral background preferred (white or grey); avoid busy backgrounds that obscure the item</li><li><strong>No watermarks or stock photos</strong> — all photos must be of the actual item you are selling</li><li><strong>Condition flaws must be photographed</strong> — any scratches, dents, creases, or missing parts must appear in at least one photo; failure to disclose is grounds for a refund and listing removal</li></ul><p>Listings with more photos (6–10) statistically sell faster and receive fewer disputes. Use natural lighting where possible.</p>`),
|
|
1089
|
-
category: "technical_support",
|
|
1090
|
-
showOnHomepage: false,
|
|
1091
|
-
showInFooter: false,
|
|
1092
|
-
isPinned: false,
|
|
1093
|
-
order: 3,
|
|
1094
|
-
priority: 6,
|
|
1095
|
-
tags: ["images", "listing", "seller", "photos"],
|
|
1096
|
-
relatedFAQs: ["faq-why-was-my-listing-rejected"],
|
|
1097
|
-
useSiteSettings: true,
|
|
1098
|
-
variables: {},
|
|
1099
|
-
stats: makeStats(1300, 58),
|
|
1100
|
-
seo: { slug: "faq-how-do-i-upload-product-images" },
|
|
800
|
+
tags: ["auction", "winning", "payment"],
|
|
801
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
802
|
+
stats: makeStats(3100, 155),
|
|
803
|
+
seo: { slug: "faq-auction-ending-rules", metaTitle: "Auction Ending Rules", metaDescription: "What happens when you win a collectibles auction on LetItRip." },
|
|
1101
804
|
isActive: true,
|
|
1102
805
|
createdBy: "user-admin-letitrip",
|
|
1103
|
-
createdAt: daysAgo(
|
|
1104
|
-
updatedAt: daysAgo(
|
|
806
|
+
createdAt: daysAgo(100),
|
|
807
|
+
updatedAt: daysAgo(12),
|
|
1105
808
|
},
|
|
1106
809
|
{
|
|
1107
|
-
id: "faq-
|
|
1108
|
-
question: "
|
|
1109
|
-
answer: html(`<p>
|
|
1110
|
-
category: "
|
|
810
|
+
id: "faq-can-i-cancel-bid",
|
|
811
|
+
question: "Can I cancel a bid?",
|
|
812
|
+
answer: html(`<p>Bids are binding. Once placed, a bid cannot be cancelled except in exceptional circumstances (e.g., the seller significantly changed the listing description after your bid). Contact support if you believe your case qualifies.</p>`),
|
|
813
|
+
category: "general",
|
|
1111
814
|
showOnHomepage: false,
|
|
1112
815
|
showInFooter: false,
|
|
1113
816
|
isPinned: false,
|
|
1114
|
-
order:
|
|
817
|
+
order: 42,
|
|
1115
818
|
priority: 6,
|
|
1116
|
-
tags: ["
|
|
1117
|
-
relatedFAQs: ["faq-how-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
stats: makeStats(980, 44),
|
|
1121
|
-
seo: { slug: "faq-why-is-my-account-suspended" },
|
|
819
|
+
tags: ["auction", "cancel-bid"],
|
|
820
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
821
|
+
stats: makeStats(2400, 120),
|
|
822
|
+
seo: { slug: "faq-can-i-cancel-bid", metaTitle: "Can I Cancel a Bid?", metaDescription: "Understanding bid cancellation on LetItRip auctions." },
|
|
1122
823
|
isActive: true,
|
|
1123
824
|
createdBy: "user-admin-letitrip",
|
|
1124
|
-
createdAt: daysAgo(
|
|
1125
|
-
updatedAt: daysAgo(
|
|
825
|
+
createdAt: daysAgo(95),
|
|
826
|
+
updatedAt: daysAgo(20),
|
|
1126
827
|
},
|
|
1127
828
|
{
|
|
1128
|
-
id: "faq-
|
|
1129
|
-
question: "
|
|
1130
|
-
answer: html(`<p>
|
|
1131
|
-
category: "
|
|
829
|
+
id: "faq-auction-reserve-price",
|
|
830
|
+
question: "What is a reserve price on auctions?",
|
|
831
|
+
answer: html(`<p>Some sellers set a hidden reserve price — the minimum they'll accept. If bidding doesn't reach the reserve, the auction ends without a winner. You'll see "Reserve not met" during the auction. There's no way to see the reserve price, but you can ask the seller via messages if they're willing to share a hint.</p>`),
|
|
832
|
+
category: "general",
|
|
1132
833
|
showOnHomepage: false,
|
|
1133
834
|
showInFooter: false,
|
|
1134
835
|
isPinned: false,
|
|
1135
|
-
order:
|
|
1136
|
-
priority:
|
|
1137
|
-
tags: ["
|
|
1138
|
-
relatedFAQs: [],
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
stats: makeStats(1500, 66),
|
|
1142
|
-
seo: { slug: "faq-how-to-leave-a-review" },
|
|
836
|
+
order: 43,
|
|
837
|
+
priority: 5,
|
|
838
|
+
tags: ["auction", "reserve-price"],
|
|
839
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
840
|
+
stats: makeStats(1200, 60),
|
|
841
|
+
seo: { slug: "faq-auction-reserve-price", metaTitle: "Auction Reserve Price", metaDescription: "What reserve prices mean on LetItRip auctions." },
|
|
1143
842
|
isActive: true,
|
|
1144
843
|
createdBy: "user-admin-letitrip",
|
|
1145
|
-
createdAt: daysAgo(
|
|
1146
|
-
updatedAt: daysAgo(
|
|
844
|
+
createdAt: daysAgo(50),
|
|
845
|
+
updatedAt: daysAgo(10),
|
|
1147
846
|
},
|
|
1148
847
|
{
|
|
1149
|
-
id: "faq-
|
|
1150
|
-
question: "
|
|
1151
|
-
answer: html(`<p>
|
|
1152
|
-
category: "
|
|
848
|
+
id: "faq-auction-bid-increment",
|
|
849
|
+
question: "What are the minimum bid increments?",
|
|
850
|
+
answer: html(`<p>Bid increments are automatic and scale with the current price: ₹10 increments up to ₹500, ₹25 up to ₹2,000, ₹50 up to ₹5,000, ₹100 up to ₹20,000, and ₹500 above ₹20,000. You can always bid more than the minimum increment.</p>`),
|
|
851
|
+
category: "general",
|
|
1153
852
|
showOnHomepage: false,
|
|
1154
853
|
showInFooter: false,
|
|
1155
854
|
isPinned: false,
|
|
1156
|
-
order:
|
|
1157
|
-
priority:
|
|
1158
|
-
tags: ["
|
|
1159
|
-
relatedFAQs: ["faq-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
stats: makeStats(1200, 54),
|
|
1163
|
-
seo: { slug: "faq-can-i-edit-a-listing-after-publishing" },
|
|
855
|
+
order: 44,
|
|
856
|
+
priority: 5,
|
|
857
|
+
tags: ["auction", "bid-increment", "pricing"],
|
|
858
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
859
|
+
stats: makeStats(1000, 50),
|
|
860
|
+
seo: { slug: "faq-auction-bid-increment", metaTitle: "Auction Bid Increments", metaDescription: "Minimum bid increment rules on LetItRip auctions." },
|
|
1164
861
|
isActive: true,
|
|
1165
862
|
createdBy: "user-admin-letitrip",
|
|
1166
|
-
createdAt: daysAgo(
|
|
1167
|
-
updatedAt: daysAgo(
|
|
863
|
+
createdAt: daysAgo(45),
|
|
864
|
+
updatedAt: daysAgo(8),
|
|
1168
865
|
},
|
|
866
|
+
// ── PRE-ORDERS (3) ────────────────────────────────────────────────────────
|
|
1169
867
|
{
|
|
1170
|
-
id: "faq-
|
|
1171
|
-
question: "How do
|
|
1172
|
-
answer: html(`<p>
|
|
1173
|
-
category: "
|
|
868
|
+
id: "faq-pre-orders-how-they-work",
|
|
869
|
+
question: "How do pre-orders work?",
|
|
870
|
+
answer: html(`<p>Pre-orders let you reserve upcoming products with a deposit (typically 20–30% of the retail price). When the product releases and ships, you pay the remaining balance. If the seller cancels the pre-order, you receive a full refund of your deposit. Pre-orders are available for upcoming trading card sets, action figure releases, and model kit drops.</p>`),
|
|
871
|
+
category: "general",
|
|
1174
872
|
showOnHomepage: false,
|
|
1175
873
|
showInFooter: false,
|
|
1176
874
|
isPinned: false,
|
|
1177
|
-
order:
|
|
875
|
+
order: 45,
|
|
1178
876
|
priority: 7,
|
|
1179
|
-
tags: ["
|
|
1180
|
-
relatedFAQs: ["faq-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
stats: makeStats(2600, 122),
|
|
1184
|
-
seo: { slug: "faq-how-do-seller-payouts-work" },
|
|
877
|
+
tags: ["pre-order", "deposit", "reservation"],
|
|
878
|
+
relatedFAQs: ["faq-pre-order-release-delay"],
|
|
879
|
+
stats: makeStats(2200, 110),
|
|
880
|
+
seo: { slug: "faq-pre-orders-how-they-work", metaTitle: "Pre-Orders on LetItRip", metaDescription: "Reserve upcoming collectibles with a deposit on LetItRip." },
|
|
1185
881
|
isActive: true,
|
|
1186
882
|
createdBy: "user-admin-letitrip",
|
|
1187
|
-
createdAt: daysAgo(
|
|
1188
|
-
updatedAt: daysAgo(
|
|
883
|
+
createdAt: daysAgo(82),
|
|
884
|
+
updatedAt: daysAgo(16),
|
|
1189
885
|
},
|
|
1190
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
1191
|
-
// BUNDLES + PRIZE DRAWS (SB5-B — 6 FAQs)
|
|
1192
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
1193
|
-
// Filed under `product_information` because the schema enum doesn't carry
|
|
1194
|
-
// a dedicated "listings" bucket. Tags identify the surface — clients can
|
|
1195
|
-
// filter on tag instead.
|
|
1196
886
|
{
|
|
1197
|
-
id: "faq-
|
|
1198
|
-
question: "What
|
|
1199
|
-
answer: html(`<p>
|
|
1200
|
-
category: "
|
|
887
|
+
id: "faq-pre-order-release-delay",
|
|
888
|
+
question: "What happens if a pre-order product is delayed?",
|
|
889
|
+
answer: html(`<p>Manufacturers sometimes delay release dates. The seller will update the expected ship date on the listing and you'll receive a notification. If the delay is more than 60 days past the original date, you can cancel for a full deposit refund. You are never charged the remaining balance until the product actually ships.</p>`),
|
|
890
|
+
category: "general",
|
|
1201
891
|
showOnHomepage: false,
|
|
1202
892
|
showInFooter: false,
|
|
1203
893
|
isPinned: false,
|
|
1204
|
-
order:
|
|
894
|
+
order: 46,
|
|
1205
895
|
priority: 6,
|
|
1206
|
-
tags: ["
|
|
1207
|
-
relatedFAQs: ["faq-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
stats: makeStats(0, 0),
|
|
1211
|
-
seo: {
|
|
1212
|
-
slug: "faq-what-is-bundle",
|
|
1213
|
-
metaTitle: "What is a bundle? — LetItRip",
|
|
1214
|
-
metaDescription: "Bundles group 3–16 items into one fixed-price listing. Standard or pre-order, never auctions or prize draws.",
|
|
1215
|
-
},
|
|
896
|
+
tags: ["pre-order", "delay", "refund"],
|
|
897
|
+
relatedFAQs: ["faq-pre-orders-how-they-work"],
|
|
898
|
+
stats: makeStats(1100, 55),
|
|
899
|
+
seo: { slug: "faq-pre-order-release-delay", metaTitle: "Pre-Order Delay Policy", metaDescription: "What happens when a pre-order is delayed on LetItRip." },
|
|
1216
900
|
isActive: true,
|
|
1217
901
|
createdBy: "user-admin-letitrip",
|
|
1218
|
-
createdAt: daysAgo(
|
|
1219
|
-
updatedAt: daysAgo(
|
|
902
|
+
createdAt: daysAgo(60),
|
|
903
|
+
updatedAt: daysAgo(12),
|
|
1220
904
|
},
|
|
1221
905
|
{
|
|
1222
|
-
id: "faq-
|
|
1223
|
-
question: "
|
|
1224
|
-
answer: html(`<p>
|
|
1225
|
-
category: "
|
|
906
|
+
id: "faq-pre-order-cancel",
|
|
907
|
+
question: "Can I cancel a pre-order?",
|
|
908
|
+
answer: html(`<p>You can cancel a pre-order any time before the seller marks it as shipped. Your deposit is refunded within 3–5 business days. Once the product ships and the remaining balance is charged, standard return policies apply.</p>`),
|
|
909
|
+
category: "general",
|
|
1226
910
|
showOnHomepage: false,
|
|
1227
911
|
showInFooter: false,
|
|
1228
912
|
isPinned: false,
|
|
1229
|
-
order:
|
|
913
|
+
order: 47,
|
|
1230
914
|
priority: 5,
|
|
1231
|
-
tags: ["
|
|
1232
|
-
relatedFAQs: ["faq-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
stats: makeStats(0, 0),
|
|
1236
|
-
seo: {
|
|
1237
|
-
slug: "faq-how-create-bundle",
|
|
1238
|
-
metaTitle: "How to create a bundle — LetItRip seller guide",
|
|
1239
|
-
metaDescription: "Step-by-step: pick 3–16 items, set the bundle price, publish. Standard or pre-order only.",
|
|
1240
|
-
},
|
|
915
|
+
tags: ["pre-order", "cancel", "deposit-refund"],
|
|
916
|
+
relatedFAQs: ["faq-pre-orders-how-they-work"],
|
|
917
|
+
stats: makeStats(800, 40),
|
|
918
|
+
seo: { slug: "faq-pre-order-cancel", metaTitle: "Cancel a Pre-Order", metaDescription: "How to cancel a pre-order and get your deposit back on LetItRip." },
|
|
1241
919
|
isActive: true,
|
|
1242
920
|
createdBy: "user-admin-letitrip",
|
|
1243
|
-
createdAt: daysAgo(
|
|
1244
|
-
updatedAt: daysAgo(
|
|
921
|
+
createdAt: daysAgo(55),
|
|
922
|
+
updatedAt: daysAgo(10),
|
|
1245
923
|
},
|
|
924
|
+
// ── ACCOUNT & SECURITY (4) ────────────────────────────────────────────────
|
|
1246
925
|
{
|
|
1247
|
-
id: "faq-
|
|
1248
|
-
question: "
|
|
1249
|
-
answer: html(`<p>
|
|
1250
|
-
category: "
|
|
926
|
+
id: "faq-how-to-create-account",
|
|
927
|
+
question: "How do I create a LetItRip account?",
|
|
928
|
+
answer: html(`<p>Sign up with your Google account (one-tap) or email. Google sign-up is recommended — it's faster and more secure. After sign-up, complete your profile with a display name and optional avatar. You can start browsing and buying immediately.</p>`),
|
|
929
|
+
category: "account_security",
|
|
1251
930
|
showOnHomepage: false,
|
|
1252
931
|
showInFooter: false,
|
|
1253
932
|
isPinned: false,
|
|
1254
|
-
order:
|
|
933
|
+
order: 48,
|
|
1255
934
|
priority: 7,
|
|
1256
|
-
tags: ["
|
|
1257
|
-
relatedFAQs: [
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
"faq-prize-draw-reveal",
|
|
1261
|
-
],
|
|
1262
|
-
useSiteSettings: true,
|
|
1263
|
-
variables: {},
|
|
1264
|
-
stats: makeStats(0, 0),
|
|
1265
|
-
seo: {
|
|
1266
|
-
slug: "faq-what-is-prize-draw",
|
|
1267
|
-
metaTitle: "What is a prize draw? — LetItRip",
|
|
1268
|
-
metaDescription: "Each paid entry wins one item from the seller's pool at random. Finite pool, fixed reveal window, non-refundable.",
|
|
1269
|
-
},
|
|
935
|
+
tags: ["account", "sign-up", "google", "registration"],
|
|
936
|
+
relatedFAQs: ["faq-how-to-sell-on-letitrip"],
|
|
937
|
+
stats: makeStats(2600, 130),
|
|
938
|
+
seo: { slug: "faq-how-to-create-account", metaTitle: "Create a LetItRip Account", metaDescription: "How to sign up for a LetItRip account with Google or email." },
|
|
1270
939
|
isActive: true,
|
|
1271
940
|
createdBy: "user-admin-letitrip",
|
|
1272
|
-
createdAt: daysAgo(
|
|
1273
|
-
updatedAt: daysAgo(
|
|
941
|
+
createdAt: daysAgo(100),
|
|
942
|
+
updatedAt: daysAgo(15),
|
|
1274
943
|
},
|
|
1275
944
|
{
|
|
1276
|
-
id: "faq-
|
|
1277
|
-
question: "How
|
|
1278
|
-
answer: html(`<p>
|
|
1279
|
-
category: "
|
|
945
|
+
id: "faq-account-security-tips",
|
|
946
|
+
question: "How do I keep my account secure?",
|
|
947
|
+
answer: html(`<p>Use Google sign-in for the strongest security. Never share your login credentials. If you signed up with email, use a strong unique password. LetItRip will never ask for your password via email or chat. If you notice suspicious activity, go to Account → Sessions to see active devices and revoke any you don't recognize.</p>`),
|
|
948
|
+
category: "account_security",
|
|
1280
949
|
showOnHomepage: false,
|
|
1281
950
|
showInFooter: false,
|
|
1282
951
|
isPinned: false,
|
|
1283
|
-
order:
|
|
1284
|
-
priority:
|
|
1285
|
-
tags: ["
|
|
1286
|
-
relatedFAQs: ["faq-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
stats: makeStats(0, 0),
|
|
1290
|
-
seo: {
|
|
1291
|
-
slug: "faq-prize-draw-fairness",
|
|
1292
|
-
metaTitle: "Are prize draws fair? — LetItRip RNG explained",
|
|
1293
|
-
metaDescription: "crypto.randomInt over the live pool, source-code linked per draw. Pool exhaustion auto-refunds.",
|
|
1294
|
-
},
|
|
952
|
+
order: 49,
|
|
953
|
+
priority: 8,
|
|
954
|
+
tags: ["security", "password", "sessions", "account"],
|
|
955
|
+
relatedFAQs: ["faq-how-to-create-account"],
|
|
956
|
+
stats: makeStats(1500, 75),
|
|
957
|
+
seo: { slug: "faq-account-security-tips", metaTitle: "Account Security on LetItRip", metaDescription: "Tips to keep your LetItRip account secure." },
|
|
1295
958
|
isActive: true,
|
|
1296
959
|
createdBy: "user-admin-letitrip",
|
|
1297
|
-
createdAt: daysAgo(
|
|
1298
|
-
updatedAt: daysAgo(
|
|
960
|
+
createdAt: daysAgo(80),
|
|
961
|
+
updatedAt: daysAgo(10),
|
|
1299
962
|
},
|
|
1300
963
|
{
|
|
1301
|
-
id: "faq-
|
|
1302
|
-
question: "Can I
|
|
1303
|
-
answer: html(`<p>
|
|
1304
|
-
category: "
|
|
964
|
+
id: "faq-delete-my-account",
|
|
965
|
+
question: "Can I delete my LetItRip account?",
|
|
966
|
+
answer: html(`<p>Yes — go to Account → Settings → Delete Account. This permanently removes your profile, addresses, and browsing history. Open orders will still be fulfilled. If you're a seller with active listings, you must close your store first. Account deletion is irreversible.</p>`),
|
|
967
|
+
category: "account_security",
|
|
1305
968
|
showOnHomepage: false,
|
|
1306
969
|
showInFooter: false,
|
|
1307
970
|
isPinned: false,
|
|
1308
|
-
order:
|
|
1309
|
-
priority:
|
|
1310
|
-
tags: ["
|
|
1311
|
-
relatedFAQs: ["faq-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
stats: makeStats(0, 0),
|
|
1315
|
-
seo: {
|
|
1316
|
-
slug: "faq-prize-draw-refund",
|
|
1317
|
-
metaTitle: "Prize draw refund policy — LetItRip",
|
|
1318
|
-
metaDescription: "Non-refundable once reveal opens. Pool exhaustion, missed deadlines, and cancellations auto-refund.",
|
|
1319
|
-
},
|
|
971
|
+
order: 50,
|
|
972
|
+
priority: 5,
|
|
973
|
+
tags: ["delete-account", "privacy", "data"],
|
|
974
|
+
relatedFAQs: ["faq-account-security-tips"],
|
|
975
|
+
stats: makeStats(600, 30),
|
|
976
|
+
seo: { slug: "faq-delete-my-account", metaTitle: "Delete Your LetItRip Account", metaDescription: "How to permanently delete your LetItRip account." },
|
|
1320
977
|
isActive: true,
|
|
1321
978
|
createdBy: "user-admin-letitrip",
|
|
1322
|
-
createdAt: daysAgo(
|
|
1323
|
-
updatedAt: daysAgo(
|
|
979
|
+
createdAt: daysAgo(50),
|
|
980
|
+
updatedAt: daysAgo(20),
|
|
1324
981
|
},
|
|
1325
982
|
{
|
|
1326
|
-
id: "faq-
|
|
1327
|
-
question: "How
|
|
1328
|
-
answer: html(`<p>
|
|
1329
|
-
category: "
|
|
983
|
+
id: "faq-notification-preferences",
|
|
984
|
+
question: "How do I manage my notifications?",
|
|
985
|
+
answer: html(`<p>Go to Account → Settings → Notification Preferences. You can toggle each notification type (order updates, auction alerts, price drops, community events) per channel — in-app, email, and WhatsApp. High-priority notifications (order shipped, auction won) are always sent in-app and cannot be fully disabled.</p>`),
|
|
986
|
+
category: "account_security",
|
|
1330
987
|
showOnHomepage: false,
|
|
1331
988
|
showInFooter: false,
|
|
1332
989
|
isPinned: false,
|
|
1333
|
-
order:
|
|
1334
|
-
priority:
|
|
1335
|
-
tags: ["
|
|
1336
|
-
relatedFAQs: [
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
stats: makeStats(0, 0),
|
|
1340
|
-
seo: {
|
|
1341
|
-
slug: "faq-prize-draw-reveal",
|
|
1342
|
-
metaTitle: "How to reveal a prize draw entry — LetItRip",
|
|
1343
|
-
metaDescription: "Reveal window opens, click 'Reveal My Prize', seller ships. Miss the deadline → auto-refund.",
|
|
1344
|
-
},
|
|
1345
|
-
isActive: true,
|
|
1346
|
-
createdBy: "user-admin-letitrip",
|
|
1347
|
-
createdAt: daysAgo(2),
|
|
1348
|
-
updatedAt: daysAgo(2),
|
|
1349
|
-
},
|
|
1350
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
1351
|
-
// SCAM AWARENESS (12 FAQs)
|
|
1352
|
-
// ══════════════════════════════════════════════════════════════════════════
|
|
1353
|
-
{
|
|
1354
|
-
id: "faq-how-to-spot-fake-seller",
|
|
1355
|
-
question: "How do I spot a fake or scam seller on LetItRip?",
|
|
1356
|
-
answer: html(`<p>Verified LetItRip sellers have a green <strong>Verified</strong> badge on their store page. Before buying, check for:</p><ul><li><strong>No badge or pending badge</strong> — the seller has not completed verification.</li><li><strong>Zero reviews or suspiciously perfect ratings</strong> — be cautious if every review is 5-star and very recent.</li><li><strong>Prices too good to be true</strong> — PSA 10 Charizard Base Set does not sell for ₹1,000.</li><li><strong>Urgency tactics</strong> — "Only 1 left, buy in 5 minutes or it's gone" is a classic pressure technique.</li><li><strong>Requests to pay outside LetItRip</strong> — any seller asking for UPI/bank transfer outside the platform is violating our Terms and likely attempting fraud.</li></ul><p>When in doubt, message the seller through LetItRip's secure messaging, check their store history, and read recent reviews carefully.</p>`),
|
|
1357
|
-
category: "scam_awareness",
|
|
1358
|
-
showOnHomepage: false,
|
|
1359
|
-
showInFooter: false,
|
|
1360
|
-
isPinned: true,
|
|
1361
|
-
order: 1,
|
|
1362
|
-
priority: 10,
|
|
1363
|
-
tags: ["scam", "fake seller", "verification", "trust"],
|
|
1364
|
-
relatedFAQs: ["faq-off-platform-payment-scam", "faq-counterfeit-collectible"],
|
|
1365
|
-
useSiteSettings: true,
|
|
1366
|
-
variables: {},
|
|
1367
|
-
stats: makeStats(3200, 290),
|
|
1368
|
-
seo: {
|
|
1369
|
-
slug: "faq-how-to-spot-fake-seller",
|
|
1370
|
-
metaTitle: "How to spot a fake seller on LetItRip",
|
|
1371
|
-
metaDescription: "Signs of a scam seller: no verification badge, suspiciously perfect reviews, prices too low, off-platform payment requests.",
|
|
1372
|
-
},
|
|
1373
|
-
isActive: true,
|
|
1374
|
-
createdBy: "user-admin-letitrip",
|
|
1375
|
-
createdAt: daysAgo(30),
|
|
1376
|
-
updatedAt: daysAgo(5),
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
id: "faq-off-platform-payment-scam",
|
|
1380
|
-
question: "A seller asked me to pay via UPI or bank transfer outside LetItRip — is that safe?",
|
|
1381
|
-
answer: html(`<p><strong>No. Never pay outside LetItRip.</strong> This is the most common scam on collectibles platforms.</p><p>When you pay through LetItRip, Razorpay holds your money in escrow and only releases it to the seller after you confirm delivery (or after 5 days without a dispute). You are protected.</p><p>If you pay via UPI, NEFT, or any method outside the platform:</p><ul><li>LetItRip has <strong>no visibility</strong> into the transaction.</li><li>We <strong>cannot refund</strong> or mediate — we are not party to that transaction.</li><li>You have no buyer protection.</li></ul><p><strong>What to do:</strong> Report the seller immediately via the "Report seller" button on their store page, or email us at trust@letitrip.in. We will investigate and suspend the seller if confirmed.</p><p>Asking buyers to pay off-platform is an <strong>immediate permanent ban</strong> on LetItRip.</p>`),
|
|
1382
|
-
category: "scam_awareness",
|
|
1383
|
-
showOnHomepage: false,
|
|
1384
|
-
showInFooter: false,
|
|
1385
|
-
isPinned: true,
|
|
1386
|
-
order: 2,
|
|
1387
|
-
priority: 10,
|
|
1388
|
-
tags: ["scam", "UPI", "off-platform", "payment", "fraud"],
|
|
1389
|
-
relatedFAQs: ["faq-how-to-spot-fake-seller", "faq-how-to-report-scam"],
|
|
1390
|
-
useSiteSettings: true,
|
|
1391
|
-
variables: {},
|
|
1392
|
-
stats: makeStats(5100, 480),
|
|
1393
|
-
seo: {
|
|
1394
|
-
slug: "faq-off-platform-payment-scam",
|
|
1395
|
-
metaTitle: "Off-platform UPI payment scam — LetItRip",
|
|
1396
|
-
metaDescription: "Never pay via UPI or bank transfer outside LetItRip. Escrow only protects on-platform payments.",
|
|
1397
|
-
},
|
|
990
|
+
order: 51,
|
|
991
|
+
priority: 5,
|
|
992
|
+
tags: ["notifications", "settings", "preferences", "whatsapp", "email"],
|
|
993
|
+
relatedFAQs: [],
|
|
994
|
+
stats: makeStats(700, 35),
|
|
995
|
+
seo: { slug: "faq-notification-preferences", metaTitle: "Notification Preferences", metaDescription: "Manage your notification preferences on LetItRip." },
|
|
1398
996
|
isActive: true,
|
|
1399
997
|
createdBy: "user-admin-letitrip",
|
|
1400
998
|
createdAt: daysAgo(30),
|
|
1401
999
|
updatedAt: daysAgo(5),
|
|
1402
1000
|
},
|
|
1001
|
+
// ── SCAM AWARENESS (4) ────────────────────────────────────────────────────
|
|
1403
1002
|
{
|
|
1404
|
-
id: "faq-
|
|
1405
|
-
question: "
|
|
1406
|
-
answer: html(`<p>
|
|
1407
|
-
category: "scam_awareness",
|
|
1408
|
-
showOnHomepage: false,
|
|
1409
|
-
showInFooter: false,
|
|
1410
|
-
isPinned: false,
|
|
1411
|
-
order: 3,
|
|
1412
|
-
priority: 9,
|
|
1413
|
-
tags: ["counterfeit", "fake", "refund", "dispute", "graded"],
|
|
1414
|
-
relatedFAQs: ["faq-how-to-spot-fake-seller", "faq-how-to-report-scam"],
|
|
1415
|
-
useSiteSettings: true,
|
|
1416
|
-
variables: {},
|
|
1417
|
-
stats: makeStats(2800, 260),
|
|
1418
|
-
seo: {
|
|
1419
|
-
slug: "faq-counterfeit-collectible",
|
|
1420
|
-
metaTitle: "Received a counterfeit collectible? — LetItRip",
|
|
1421
|
-
metaDescription: "Open a dispute within 5 days, upload photos. Confirmed fakes get a full refund and seller is banned.",
|
|
1422
|
-
},
|
|
1423
|
-
isActive: true,
|
|
1424
|
-
createdBy: "user-admin-letitrip",
|
|
1425
|
-
createdAt: daysAgo(28),
|
|
1426
|
-
updatedAt: daysAgo(4),
|
|
1427
|
-
},
|
|
1428
|
-
{
|
|
1429
|
-
id: "faq-how-to-report-scam",
|
|
1430
|
-
question: "How do I report a scammer or suspicious account on LetItRip?",
|
|
1431
|
-
answer: html(`<p>You can report a suspicious account through any of these channels:</p><ul><li><strong>Store page</strong> — click the three-dot menu (⋮) on any store page → "Report this store".</li><li><strong>Order dispute</strong> — if you already placed an order, use the dispute flow in Order Details.</li><li><strong>Scam Registry</strong> — visit <a href="/scams/report">/scams/report</a> to submit a detailed scam report including phone numbers, UPI IDs, and a description of what happened. This helps warn other buyers.</li><li><strong>Email</strong> — trust@letitrip.in for urgent cases.</li></ul><p>When reporting, include:</p><ul><li>The seller's LetItRip store name or URL</li><li>Any phone numbers, UPI IDs, or social media handles used in the scam</li><li>Screenshots of conversations (especially off-platform payment requests)</li><li>Order ID if a transaction was involved</li></ul><p>We review all scam reports within 24–48 hours. Reports go directly to our Trust & Safety team.</p>`),
|
|
1432
|
-
category: "scam_awareness",
|
|
1433
|
-
showOnHomepage: false,
|
|
1434
|
-
showInFooter: false,
|
|
1435
|
-
isPinned: true,
|
|
1436
|
-
order: 4,
|
|
1437
|
-
priority: 9,
|
|
1438
|
-
tags: ["report", "scam", "trust & safety", "fraud"],
|
|
1439
|
-
relatedFAQs: ["faq-off-platform-payment-scam", "faq-how-to-spot-fake-seller"],
|
|
1440
|
-
useSiteSettings: true,
|
|
1441
|
-
variables: {},
|
|
1442
|
-
stats: makeStats(1900, 180),
|
|
1443
|
-
seo: {
|
|
1444
|
-
slug: "faq-how-to-report-scam",
|
|
1445
|
-
metaTitle: "How to report a scammer on LetItRip",
|
|
1446
|
-
metaDescription: "Report scammers via the store page, order dispute, scam registry, or trust@letitrip.in.",
|
|
1447
|
-
},
|
|
1448
|
-
isActive: true,
|
|
1449
|
-
createdBy: "user-admin-letitrip",
|
|
1450
|
-
createdAt: daysAgo(28),
|
|
1451
|
-
updatedAt: daysAgo(4),
|
|
1452
|
-
},
|
|
1453
|
-
{
|
|
1454
|
-
id: "faq-phishing-fake-letitrip",
|
|
1455
|
-
question: "I received a message claiming to be LetItRip asking for my password or OTP — is it real?",
|
|
1456
|
-
answer: html(`<p><strong>No. LetItRip will never ask for your password, OTP, or payment details via WhatsApp, SMS, or email.</strong></p><p>Common phishing tactics targeting collectibles buyers:</p><ul><li>Fake "LetItRip support" WhatsApp numbers asking to "verify your order" via an OTP.</li><li>SMS links to fake login pages that steal your credentials.</li><li>Emails claiming your account will be suspended unless you click a link and re-enter your card number.</li></ul><p><strong>What LetItRip actually sends:</strong></p><ul><li>Order confirmation and shipping emails from noreply@letitrip.in.</li><li>OTPs for login — we never ask you to read the OTP back to anyone.</li><li>We never contact you via personal WhatsApp or unofficial numbers.</li></ul><p>If you received a suspicious message, do not click any links. Report the number/email to trust@letitrip.in and change your LetItRip password immediately if you've already entered credentials on an unknown site.</p>`),
|
|
1457
|
-
category: "scam_awareness",
|
|
1458
|
-
showOnHomepage: false,
|
|
1459
|
-
showInFooter: false,
|
|
1460
|
-
isPinned: false,
|
|
1461
|
-
order: 5,
|
|
1462
|
-
priority: 8,
|
|
1463
|
-
tags: ["phishing", "OTP", "password", "impersonation", "WhatsApp"],
|
|
1464
|
-
relatedFAQs: ["faq-off-platform-payment-scam", "faq-how-to-report-scam"],
|
|
1465
|
-
useSiteSettings: true,
|
|
1466
|
-
variables: {},
|
|
1467
|
-
stats: makeStats(2200, 200),
|
|
1468
|
-
seo: {
|
|
1469
|
-
slug: "faq-phishing-fake-letitrip",
|
|
1470
|
-
metaTitle: "Fake LetItRip messages asking for OTP or password",
|
|
1471
|
-
metaDescription: "LetItRip never asks for OTPs or passwords via WhatsApp or SMS. These are phishing scams.",
|
|
1472
|
-
},
|
|
1473
|
-
isActive: true,
|
|
1474
|
-
createdBy: "user-admin-letitrip",
|
|
1475
|
-
createdAt: daysAgo(25),
|
|
1476
|
-
updatedAt: daysAgo(3),
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
id: "faq-advance-payment-scam",
|
|
1480
|
-
question: "A seller asked me to pay an 'advance' or 'booking amount' outside the order system — is that legitimate?",
|
|
1481
|
-
answer: html(`<p><strong>No. LetItRip does not have an "advance" or "booking amount" system.</strong> This is a well-known scam pattern in the Indian collectibles market.</p><p>How it works: a scammer (posing as a seller) messages you about a rare item, asks for a 20–30% advance via UPI to "hold" it, and then disappears — or demands more money before shipping.</p><p><strong>If a seller contacts you outside LetItRip</strong> (Instagram DM, WhatsApp, Telegram) and asks for an advance to hold an item:</p><ul><li>The item may not exist.</li><li>You have no recourse once you transfer money.</li><li>LetItRip's escrow and buyer protection does NOT apply to off-platform transactions.</li></ul><p>Legitimate pre-orders on LetItRip are handled through the Pre-Orders section — all payments go through Razorpay and are fully protected. If a seller is asking you to deviate from this, report them immediately.</p>`),
|
|
1482
|
-
category: "scam_awareness",
|
|
1483
|
-
showOnHomepage: false,
|
|
1484
|
-
showInFooter: false,
|
|
1485
|
-
isPinned: false,
|
|
1486
|
-
order: 6,
|
|
1487
|
-
priority: 8,
|
|
1488
|
-
tags: ["advance payment", "booking amount", "pre-order scam", "fraud"],
|
|
1489
|
-
relatedFAQs: ["faq-off-platform-payment-scam", "faq-how-to-report-scam"],
|
|
1490
|
-
useSiteSettings: true,
|
|
1491
|
-
variables: {},
|
|
1492
|
-
stats: makeStats(1600, 150),
|
|
1493
|
-
seo: {
|
|
1494
|
-
slug: "faq-advance-payment-scam",
|
|
1495
|
-
metaTitle: "Advance payment / booking amount scam — LetItRip",
|
|
1496
|
-
metaDescription: "LetItRip has no advance or booking system. Sellers asking for off-platform advances are scammers.",
|
|
1497
|
-
},
|
|
1498
|
-
isActive: true,
|
|
1499
|
-
createdBy: "user-admin-letitrip",
|
|
1500
|
-
createdAt: daysAgo(25),
|
|
1501
|
-
updatedAt: daysAgo(3),
|
|
1502
|
-
},
|
|
1503
|
-
{
|
|
1504
|
-
id: "faq-graded-slab-scam",
|
|
1505
|
-
question: "How do I verify a PSA/BGS/CGC graded card is genuine?",
|
|
1506
|
-
answer: html(`<p>Graded slabs are a prime target for forgery. Before buying, always verify independently:</p><ul><li><strong>PSA</strong> — visit <a href="https://www.psacard.com/cert" target="_blank" rel="noopener noreferrer">psacard.com/cert</a> and enter the cert number visible on the label.</li><li><strong>BGS (Beckett)</strong> — visit <a href="https://www.beckett.com/grading" target="_blank" rel="noopener noreferrer">beckett.com/grading</a> → Cert Verification.</li><li><strong>CGC</strong> — visit <a href="https://www.cgccards.com/certlookup/" target="_blank" rel="noopener noreferrer">cgccards.com/certlookup</a>.</li></ul><p>Common signs of a fake slab:</p><ul><li>Cert number does not appear in the grading company's database.</li><li>Label font, hologram, or case seam looks slightly off compared to genuine slabs.</li><li>Seller refuses to show a clear close-up of the cert number label.</li></ul><p>Ask the seller to share a close-up photo of the label before buying. If the cert doesn't verify, do not purchase, and report the listing via the "Report listing" button.</p>`),
|
|
1507
|
-
category: "scam_awareness",
|
|
1508
|
-
showOnHomepage: false,
|
|
1509
|
-
showInFooter: false,
|
|
1510
|
-
isPinned: false,
|
|
1511
|
-
order: 7,
|
|
1512
|
-
priority: 7,
|
|
1513
|
-
tags: ["PSA", "BGS", "CGC", "graded", "cert verification", "fake slab"],
|
|
1514
|
-
relatedFAQs: ["faq-counterfeit-collectible", "faq-how-to-spot-fake-seller"],
|
|
1515
|
-
useSiteSettings: true,
|
|
1516
|
-
variables: {},
|
|
1517
|
-
stats: makeStats(3400, 310),
|
|
1518
|
-
seo: {
|
|
1519
|
-
slug: "faq-graded-slab-scam",
|
|
1520
|
-
metaTitle: "Verify PSA / BGS / CGC graded card is genuine — LetItRip",
|
|
1521
|
-
metaDescription: "Always verify the cert number at psacard.com, beckett.com, or cgccards.com before buying a graded slab.",
|
|
1522
|
-
},
|
|
1523
|
-
isActive: true,
|
|
1524
|
-
createdBy: "user-admin-letitrip",
|
|
1525
|
-
createdAt: daysAgo(22),
|
|
1526
|
-
updatedAt: daysAgo(2),
|
|
1527
|
-
},
|
|
1528
|
-
{
|
|
1529
|
-
id: "faq-social-media-seller-scam",
|
|
1530
|
-
question: "I found a LetItRip seller on Instagram. Can I buy from them directly?",
|
|
1531
|
-
answer: html(`<p><strong>Always buy through LetItRip — never through DMs, Instagram, or WhatsApp links.</strong></p><p>Many LetItRip sellers promote their stores on social media, which is perfectly fine. But the moment a seller asks you to complete a transaction outside LetItRip (even if they show you their LetItRip store as "proof"), you lose all buyer protection:</p><ul><li>No escrow — money goes directly to them.</li><li>No dispute mediation — LetItRip cannot intervene.</li><li>No refund guarantee.</li></ul><p>The correct flow: find the seller's official LetItRip store via their bio link or at letitrip.in/stores, and complete the purchase through the platform. If a seller's "LetItRip link" leads to a site that looks different from letitrip.in, it may be a phishing clone — verify the URL is exactly <strong>letitrip.in</strong> or <strong>www.letitrip.in</strong>.</p>`),
|
|
1532
|
-
category: "scam_awareness",
|
|
1533
|
-
showOnHomepage: false,
|
|
1534
|
-
showInFooter: false,
|
|
1535
|
-
isPinned: false,
|
|
1536
|
-
order: 8,
|
|
1537
|
-
priority: 7,
|
|
1538
|
-
tags: ["Instagram", "social media", "DM", "off-platform", "fraud"],
|
|
1539
|
-
relatedFAQs: ["faq-off-platform-payment-scam", "faq-phishing-fake-letitrip"],
|
|
1540
|
-
useSiteSettings: true,
|
|
1541
|
-
variables: {},
|
|
1542
|
-
stats: makeStats(1800, 165),
|
|
1543
|
-
seo: {
|
|
1544
|
-
slug: "faq-social-media-seller-scam",
|
|
1545
|
-
metaTitle: "Buying from LetItRip sellers on Instagram — safe?",
|
|
1546
|
-
metaDescription: "Always complete purchases on letitrip.in. Social media DM sales bypass buyer protection.",
|
|
1547
|
-
},
|
|
1548
|
-
isActive: true,
|
|
1549
|
-
createdBy: "user-admin-letitrip",
|
|
1550
|
-
createdAt: daysAgo(20),
|
|
1551
|
-
updatedAt: daysAgo(2),
|
|
1552
|
-
},
|
|
1553
|
-
{
|
|
1554
|
-
id: "faq-scam-registry",
|
|
1555
|
-
question: "What is the LetItRip Scam Registry?",
|
|
1556
|
-
answer: html(`<p>The <strong>LetItRip Scam Registry</strong> is a publicly searchable database of phone numbers, UPI IDs, and display names associated with confirmed or reported collectibles scams in India.</p><p><strong>What's in the registry:</strong></p><ul><li>Phone numbers and UPI IDs reported by buyers and verified by our Trust team.</li><li>The type of scam (advance payment, fake listing, counterfeit slab, etc.).</li><li>Verification status: <em>pending review</em>, <em>verified</em>, or <em>rejected</em>.</li></ul><p><strong>How to use it:</strong> Before transferring money to any individual for a collectible — even outside LetItRip — search their phone number or UPI ID in the registry at <a href="/scams">/scams</a>. A verified hit is a strong warning to walk away.</p><p><strong>How to submit:</strong> Use the <a href="/scams/report">/scams/report</a> form. Provide as much detail as possible — more evidence means faster verification.</p><p>The registry is maintained by LetItRip's Trust & Safety team and is reviewed daily.</p>`),
|
|
1003
|
+
id: "faq-spot-a-scam-listing",
|
|
1004
|
+
question: "How do I spot a scam listing?",
|
|
1005
|
+
answer: html(`<p>Red flags: price too good to be true, stock photos instead of actual product photos, brand-new account with no reviews, pressure to pay outside LetItRip ("DM me on WhatsApp for discount"), and vague descriptions. LetItRip's verified seller program eliminates most scams, but always check the seller's reviews and store age before high-value purchases.</p>`),
|
|
1557
1006
|
category: "scam_awareness",
|
|
1558
1007
|
showOnHomepage: false,
|
|
1559
1008
|
showInFooter: true,
|
|
1560
1009
|
isPinned: false,
|
|
1561
|
-
order:
|
|
1010
|
+
order: 52,
|
|
1562
1011
|
priority: 8,
|
|
1563
|
-
tags: ["scam
|
|
1564
|
-
relatedFAQs: ["faq-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
stats: makeStats(2600, 240),
|
|
1568
|
-
seo: {
|
|
1569
|
-
slug: "faq-scam-registry",
|
|
1570
|
-
metaTitle: "LetItRip Scam Registry — search reported scammers",
|
|
1571
|
-
metaDescription: "Search phone numbers and UPI IDs in the LetItRip Scam Registry to check if a collectibles seller has been reported.",
|
|
1572
|
-
},
|
|
1012
|
+
tags: ["scam", "fraud", "red-flags", "safety"],
|
|
1013
|
+
relatedFAQs: ["faq-report-a-scammer", "faq-counterfeit-guarantee"],
|
|
1014
|
+
stats: makeStats(2800, 140),
|
|
1015
|
+
seo: { slug: "faq-spot-a-scam-listing", metaTitle: "Spot a Scam Listing", metaDescription: "How to identify scam listings on collectibles marketplaces." },
|
|
1573
1016
|
isActive: true,
|
|
1574
1017
|
createdBy: "user-admin-letitrip",
|
|
1575
|
-
createdAt: daysAgo(
|
|
1576
|
-
updatedAt: daysAgo(
|
|
1018
|
+
createdAt: daysAgo(70),
|
|
1019
|
+
updatedAt: daysAgo(8),
|
|
1577
1020
|
},
|
|
1578
1021
|
{
|
|
1579
|
-
id: "faq-
|
|
1580
|
-
question: "
|
|
1581
|
-
answer: html(`<p>
|
|
1022
|
+
id: "faq-report-a-scammer",
|
|
1023
|
+
question: "How do I report a scammer?",
|
|
1024
|
+
answer: html(`<p>Click the "Report" button on any listing or store page. Select the issue type (counterfeit, misleading description, off-platform payment request, etc.) and provide evidence. Our moderation team reviews reports within 24 hours. Confirmed scammers are permanently banned and added to our public scam registry.</p>`),
|
|
1582
1025
|
category: "scam_awareness",
|
|
1583
1026
|
showOnHomepage: false,
|
|
1584
1027
|
showInFooter: false,
|
|
1585
1028
|
isPinned: false,
|
|
1586
|
-
order:
|
|
1029
|
+
order: 53,
|
|
1587
1030
|
priority: 7,
|
|
1588
|
-
tags: ["
|
|
1589
|
-
relatedFAQs: ["faq-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
stats: makeStats(4100, 380),
|
|
1593
|
-
seo: {
|
|
1594
|
-
slug: "faq-buyer-protection-limits",
|
|
1595
|
-
metaTitle: "What does LetItRip buyer protection cover?",
|
|
1596
|
-
metaDescription: "Buyer protection covers on-platform purchases. Off-platform payments, prize draw results, and buyer's remorse are excluded.",
|
|
1597
|
-
},
|
|
1031
|
+
tags: ["report", "scammer", "moderation"],
|
|
1032
|
+
relatedFAQs: ["faq-spot-a-scam-listing"],
|
|
1033
|
+
stats: makeStats(1800, 90),
|
|
1034
|
+
seo: { slug: "faq-report-a-scammer", metaTitle: "Report a Scammer", metaDescription: "How to report a scammer on LetItRip." },
|
|
1598
1035
|
isActive: true,
|
|
1599
1036
|
createdBy: "user-admin-letitrip",
|
|
1600
|
-
createdAt: daysAgo(
|
|
1601
|
-
updatedAt: daysAgo(
|
|
1037
|
+
createdAt: daysAgo(65),
|
|
1038
|
+
updatedAt: daysAgo(10),
|
|
1602
1039
|
},
|
|
1603
1040
|
{
|
|
1604
|
-
id: "faq-
|
|
1605
|
-
question: "
|
|
1606
|
-
answer: html(`<p
|
|
1041
|
+
id: "faq-off-platform-payment-warning",
|
|
1042
|
+
question: "Should I ever pay outside of LetItRip?",
|
|
1043
|
+
answer: html(`<p><strong>Never.</strong> Any seller asking you to pay via UPI, bank transfer, or any method outside of LetItRip checkout is violating our terms. Off-platform payments have zero buyer protection — no escrow, no dispute mediation, no refund guarantee. Report the seller immediately.</p>`),
|
|
1607
1044
|
category: "scam_awareness",
|
|
1608
1045
|
showOnHomepage: false,
|
|
1609
1046
|
showInFooter: false,
|
|
1610
|
-
isPinned:
|
|
1611
|
-
order:
|
|
1612
|
-
priority:
|
|
1613
|
-
tags: ["
|
|
1614
|
-
relatedFAQs: ["faq-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
stats: makeStats(5800, 530),
|
|
1618
|
-
seo: {
|
|
1619
|
-
slug: "faq-scam-types-collectibles",
|
|
1620
|
-
metaTitle: "Common collectibles scams in India — LetItRip guide",
|
|
1621
|
-
metaDescription: "7 common scam patterns: advance payments, fake graded slabs, wrong item shipped, phishing, and more.",
|
|
1622
|
-
},
|
|
1047
|
+
isPinned: true,
|
|
1048
|
+
order: 54,
|
|
1049
|
+
priority: 10,
|
|
1050
|
+
tags: ["off-platform", "payment", "safety", "warning"],
|
|
1051
|
+
relatedFAQs: ["faq-spot-a-scam-listing", "faq-what-is-escrow"],
|
|
1052
|
+
stats: makeStats(3200, 160),
|
|
1053
|
+
seo: { slug: "faq-off-platform-payment-warning", metaTitle: "Never Pay Off-Platform", metaDescription: "Why you should never pay outside of LetItRip's secure checkout." },
|
|
1623
1054
|
isActive: true,
|
|
1624
1055
|
createdBy: "user-admin-letitrip",
|
|
1625
|
-
createdAt: daysAgo(
|
|
1626
|
-
updatedAt: daysAgo(
|
|
1056
|
+
createdAt: daysAgo(60),
|
|
1057
|
+
updatedAt: daysAgo(5),
|
|
1627
1058
|
},
|
|
1628
1059
|
{
|
|
1629
|
-
id: "faq-
|
|
1630
|
-
question: "
|
|
1631
|
-
answer: html(`<p>
|
|
1632
|
-
category: "
|
|
1060
|
+
id: "faq-community-events",
|
|
1061
|
+
question: "What community events does LetItRip run?",
|
|
1062
|
+
answer: html(`<p>LetItRip runs regular community events: <strong>Polls</strong> (vote on upcoming features), <strong>Sales</strong> (platform-wide discount events), <strong>Raffles</strong> (win rare collectibles), <strong>Spin Wheels</strong> (instant coupon prizes), and <strong>Surveys</strong> (share feedback, earn rewards). Check the Events page for current and upcoming events.</p>`),
|
|
1063
|
+
category: "general",
|
|
1633
1064
|
showOnHomepage: false,
|
|
1634
1065
|
showInFooter: false,
|
|
1635
1066
|
isPinned: false,
|
|
1636
|
-
order:
|
|
1637
|
-
priority:
|
|
1638
|
-
tags: ["
|
|
1639
|
-
relatedFAQs: ["faq-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
stats: makeStats(1400, 130),
|
|
1643
|
-
seo: {
|
|
1644
|
-
slug: "faq-seller-impersonation",
|
|
1645
|
-
metaTitle: "Seller impersonation scam — LetItRip",
|
|
1646
|
-
metaDescription: "How to detect and report a fake account impersonating a real LetItRip seller.",
|
|
1647
|
-
},
|
|
1067
|
+
order: 55,
|
|
1068
|
+
priority: 6,
|
|
1069
|
+
tags: ["events", "community", "raffle", "poll", "spin-wheel"],
|
|
1070
|
+
relatedFAQs: ["faq-prize-draws-how-they-work"],
|
|
1071
|
+
stats: makeStats(1400, 70),
|
|
1072
|
+
seo: { slug: "faq-community-events", metaTitle: "Community Events on LetItRip", metaDescription: "Polls, raffles, spin wheels, and sales events on LetItRip." },
|
|
1648
1073
|
isActive: true,
|
|
1649
1074
|
createdBy: "user-admin-letitrip",
|
|
1650
|
-
createdAt: daysAgo(
|
|
1651
|
-
updatedAt: daysAgo(
|
|
1075
|
+
createdAt: daysAgo(40),
|
|
1076
|
+
updatedAt: daysAgo(6),
|
|
1652
1077
|
},
|
|
1653
1078
|
];
|