@mohasinac/appkit 2.3.1 → 2.3.2
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/client.d.ts +12 -8
- package/dist/client.js +7 -4
- package/dist/constants/api-endpoints.d.ts +4 -0
- package/dist/constants/api-endpoints.js +2 -0
- package/dist/core/contact-submissions.repository.d.ts +32 -0
- package/dist/core/contact-submissions.repository.js +49 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +1 -0
- package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
- package/dist/features/account/components/AddressFilters.d.ts +5 -0
- package/dist/features/account/components/AddressFilters.js +20 -0
- package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
- package/dist/features/account/components/AddressesIndexListing.js +51 -0
- package/dist/features/account/components/UserSidebar.d.ts +7 -3
- package/dist/features/account/components/UserSidebar.js +55 -7
- package/dist/features/account/hooks/useAddresses.d.ts +7 -0
- package/dist/features/account/hooks/useAddresses.js +12 -1
- package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
- package/dist/features/admin/actions/admin-read-actions.js +18 -0
- package/dist/features/admin/components/AdminBlogView.js +26 -2
- package/dist/features/admin/components/AdminCarouselView.js +18 -2
- package/dist/features/admin/components/AdminCategoriesView.js +27 -2
- package/dist/features/admin/components/AdminContactView.d.ts +4 -0
- package/dist/features/admin/components/AdminContactView.js +50 -0
- package/dist/features/admin/components/AdminFaqsView.js +19 -2
- package/dist/features/admin/components/AdminListingScaffold.d.ts +11 -2
- package/dist/features/admin/components/AdminListingScaffold.js +14 -3
- package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
- package/dist/features/admin/components/AdminNewsletterView.js +50 -0
- package/dist/features/admin/components/AdminProductsView.js +30 -2
- package/dist/features/admin/components/AdminReviewsView.js +26 -2
- package/dist/features/admin/components/AdminStoresView.js +17 -2
- package/dist/features/admin/components/AdminUsersView.js +27 -2
- package/dist/features/admin/components/DataTable.d.ts +2 -1
- package/dist/features/admin/components/DataTable.js +18 -4
- package/dist/features/admin/components/index.d.ts +6 -0
- package/dist/features/admin/components/index.js +3 -0
- package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
- package/dist/features/admin/hooks/useAdminListingData.js +12 -7
- package/dist/features/admin/server.d.ts +3 -0
- package/dist/features/admin/server.js +2 -0
- package/dist/features/auctions/components/AuctionDetailPageView.js +93 -47
- package/dist/features/auctions/components/AuctionFilters.d.ts +8 -0
- package/dist/features/auctions/components/AuctionFilters.js +12 -0
- package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
- package/dist/features/auctions/components/AuctionsListView.js +37 -5
- package/dist/features/auctions/schemas/index.d.ts +4 -4
- package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
- package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
- package/dist/features/blog/components/BlogFilters.js +2 -1
- package/dist/features/blog/components/BlogIndexListing.js +14 -9
- package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
- package/dist/features/blog/components/BlogIndexPageView.js +10 -2
- package/dist/features/blog/components/BlogListView.d.ts +2 -1
- package/dist/features/blog/components/BlogListView.js +10 -3
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +1 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +41 -38
- package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
- package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
- package/dist/features/categories/components/CategoryDetailPageView.js +13 -6
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -0
- package/dist/features/categories/components/CategoryDetailTabs.js +17 -0
- package/dist/features/categories/components/CategoryFilters.js +2 -1
- package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
- package/dist/features/categories/components/CategoryGrid.js +8 -6
- package/dist/features/categories/components/CategoryProductsListing.js +22 -11
- package/dist/features/categories/components/index.d.ts +2 -0
- package/dist/features/categories/components/index.js +1 -0
- package/dist/features/categories/hooks/useCategories.d.ts +20 -0
- package/dist/features/categories/hooks/useCategories.js +50 -1
- package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
- package/dist/features/categories/hooks/useCategoryTree.js +65 -0
- package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
- package/dist/features/events/components/AdminEventEditorView.js +203 -0
- package/dist/features/events/components/AdminEventsView.js +28 -2
- package/dist/features/events/components/EventCard.js +4 -2
- package/dist/features/events/components/EventFilters.js +2 -1
- package/dist/features/events/components/EventsIndexListing.js +40 -10
- package/dist/features/events/components/EventsListPageView.d.ts +6 -1
- package/dist/features/events/components/EventsListPageView.js +40 -7
- package/dist/features/events/components/index.d.ts +2 -0
- package/dist/features/events/components/index.js +1 -0
- package/dist/features/events/hooks/useEvents.js +2 -0
- package/dist/features/events/types/index.d.ts +1 -0
- package/dist/features/homepage/components/BlogArticlesSection.js +1 -1
- package/dist/features/homepage/components/EventsSection.js +1 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +1 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +1 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +1 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +1 -1
- package/dist/features/homepage/components/HeroCarousel.js +1 -1
- package/dist/features/homepage/components/MarketplaceHomepageView.js +27 -17
- package/dist/features/homepage/components/SectionCarousel.js +4 -4
- package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
- package/dist/features/homepage/schemas/firestore.d.ts +1 -1
- package/dist/features/homepage/schemas/firestore.js +2 -1
- package/dist/features/layout/AppLayoutShell.d.ts +6 -2
- package/dist/features/layout/AppLayoutShell.js +7 -3
- package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +6 -2
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +80 -12
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +8 -0
- package/dist/features/pre-orders/components/PreOrderFilters.js +21 -0
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +69 -10
- package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
- package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
- package/dist/features/pre-orders/components/index.d.ts +2 -0
- package/dist/features/pre-orders/components/index.js +1 -0
- package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
- package/dist/features/products/components/AuctionsIndexListing.js +61 -9
- package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
- package/dist/features/products/components/InteractiveProductCard.js +2 -2
- package/dist/features/products/components/ProductDetailPageView.d.ts +1 -1
- package/dist/features/products/components/ProductDetailPageView.js +116 -25
- package/dist/features/products/components/ProductFilters.d.ts +6 -11
- package/dist/features/products/components/ProductFilters.js +5 -3
- package/dist/features/products/components/ProductGrid.d.ts +8 -2
- package/dist/features/products/components/ProductGrid.js +20 -5
- package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
- package/dist/features/products/components/ProductTabsShell.js +14 -14
- package/dist/features/products/components/ProductsIndexListing.js +73 -9
- package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
- package/dist/features/products/components/ProductsIndexPageView.js +39 -6
- package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
- package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
- package/dist/features/products/components/index.d.ts +1 -0
- package/dist/features/products/components/index.js +1 -0
- package/dist/features/products/hooks/useProducts.js +16 -0
- package/dist/features/products/repository/products.repository.d.ts +8 -0
- package/dist/features/products/repository/products.repository.js +2 -0
- package/dist/features/products/schemas/index.d.ts +8 -8
- package/dist/features/products/types/index.d.ts +12 -0
- package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
- package/dist/features/promotions/components/CouponsIndexListing.js +86 -0
- package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
- package/dist/features/promotions/components/PromotionsView.js +6 -1
- package/dist/features/promotions/components/index.d.ts +4 -2
- package/dist/features/promotions/components/index.js +2 -1
- package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
- package/dist/features/reviews/components/ReviewDetailPageView.js +20 -0
- package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
- package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
- package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
- package/dist/features/reviews/components/ReviewFilters.js +5 -4
- package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
- package/dist/features/reviews/components/ReviewsIndexListing.js +35 -51
- package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
- package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
- package/dist/features/reviews/components/ReviewsList.js +9 -1
- package/dist/features/reviews/components/index.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +15 -1
- package/dist/features/reviews/types/index.d.ts +6 -1
- package/dist/features/seller/components/SellerSidebar.d.ts +8 -4
- package/dist/features/seller/components/SellerSidebar.js +6 -4
- package/dist/features/seller/components/index.d.ts +30 -0
- package/dist/features/seller/components/index.js +17 -0
- package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
- package/dist/features/seller/hooks/useSellerStore.js +2 -0
- package/dist/features/seller/permission-map.d.ts +4 -2
- package/dist/features/seller/permission-map.js +16 -14
- package/dist/features/seller/schemas/index.d.ts +2 -2
- package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +24 -19
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +0 -5
- package/dist/features/stores/components/InteractiveStoreCard.js +9 -9
- package/dist/features/stores/components/StoreAuctionsListing.js +27 -9
- package/dist/features/stores/components/StoreDetailLayoutView.js +2 -0
- package/dist/features/stores/components/StoreFilters.d.ts +5 -0
- package/dist/features/stores/components/StoreFilters.js +20 -0
- package/dist/features/stores/components/StoreHeader.js +2 -2
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +5 -0
- package/dist/features/stores/components/StorePreOrdersListing.js +40 -0
- package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
- package/dist/features/stores/components/StorePreOrdersPageView.js +21 -0
- package/dist/features/stores/components/StoreProductsListing.js +21 -11
- package/dist/features/stores/components/StoreReviewsListing.js +2 -7
- package/dist/features/stores/components/StoresIndexListing.js +42 -8
- package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
- package/dist/features/stores/components/StoresIndexPageView.js +9 -2
- package/dist/features/stores/components/index.d.ts +3 -0
- package/dist/features/stores/components/index.js +1 -0
- package/dist/features/stores/hooks/useStores.d.ts +7 -1
- package/dist/features/stores/hooks/useStores.js +16 -3
- package/dist/features/stores/schemas/index.d.ts +2 -2
- package/dist/features/stores/types/index.d.ts +3 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -0
- package/dist/features/wishlist/hooks/useWishlistCount.js +31 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
- package/dist/features/wishlist/index.d.ts +3 -0
- package/dist/features/wishlist/index.js +3 -0
- package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
- package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
- package/dist/index.d.ts +50 -1
- package/dist/index.js +63 -1
- package/dist/next/routing/route-map.d.ts +70 -36
- package/dist/next/routing/route-map.js +30 -22
- package/dist/seed/addresses-seed-data.js +62 -261
- package/dist/seed/beyblade-seed-data.d.ts +7 -0
- package/dist/seed/beyblade-seed-data.js +947 -0
- package/dist/seed/bids-seed-data.d.ts +10 -2
- package/dist/seed/bids-seed-data.js +220 -1071
- package/dist/seed/blog-posts-seed-data.d.ts +2 -2
- package/dist/seed/blog-posts-seed-data.js +455 -117
- package/dist/seed/cart-seed-data.d.ts +9 -9
- package/dist/seed/cart-seed-data.js +73 -74
- package/dist/seed/coupons-seed-data.d.ts +3 -4
- package/dist/seed/coupons-seed-data.js +3 -509
- package/dist/seed/events-seed-data.d.ts +2 -2
- package/dist/seed/events-seed-data.js +315 -476
- package/dist/seed/faq-seed-data.d.ts +18 -41
- package/dist/seed/faq-seed-data.js +1059 -1172
- package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
- package/dist/seed/hot-wheels-seed-data.js +1365 -0
- package/dist/seed/index.d.ts +6 -1
- package/dist/seed/index.js +6 -1
- package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
- package/dist/seed/pokemon-carousel-slides-seed-data.js +152 -268
- package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
- package/dist/seed/pokemon-categories-seed-data.js +424 -1004
- package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
- package/dist/seed/pokemon-coupons-seed-data.js +465 -0
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
- package/dist/seed/pokemon-homepage-sections-seed-data.js +67 -289
- package/dist/seed/pokemon-products-seed-data.js +662 -0
- package/dist/seed/pokemon-seed-bundle.d.ts +32 -11
- package/dist/seed/pokemon-seed-bundle.js +41 -11
- package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
- package/dist/seed/pokemon-stores-seed-data.js +56 -31
- package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
- package/dist/seed/pokemon-users-seed-data.js +245 -261
- package/dist/seed/reviews-seed-data.d.ts +17 -2
- package/dist/seed/reviews-seed-data.js +519 -483
- package/dist/seed/site-settings-seed-data.js +14 -14
- package/dist/seed/store-addresses-seed-data.js +68 -50
- package/dist/seed/transformers-seed-data.d.ts +7 -0
- package/dist/seed/transformers-seed-data.js +510 -0
- package/dist/seed/wishlists-seed-data.d.ts +5 -1
- package/dist/seed/wishlists-seed-data.js +82 -4
- package/dist/server.d.ts +1 -0
- package/dist/server.js +2 -0
- package/dist/tokens/index.d.ts +6 -0
- package/dist/tokens/index.js +2 -0
- package/dist/ui/components/BaseListingCard.js +24 -26
- package/dist/ui/components/BaseListingCard.style.css +5 -5
- package/dist/ui/components/HorizontalScroller.d.ts +1 -1
- package/dist/ui/components/HorizontalScroller.js +19 -5
- package/dist/ui/components/SideDrawer.style.css +3 -11
- package/dist/ui/rich-text/RichText.js +19 -1
- package/package.json +1 -1
|
@@ -1,27 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* 102 FAQs across 7 categories
|
|
2
|
+
* LetItRip FAQ Seed Data
|
|
4
3
|
*
|
|
5
|
-
*
|
|
6
|
-
* -
|
|
7
|
-
* -
|
|
8
|
-
* -
|
|
9
|
-
* -
|
|
10
|
-
* - account_security: 10 FAQs
|
|
11
|
-
* - product_information: 15 FAQs
|
|
12
|
-
* - general: 12 seller FAQs merged into general guidance
|
|
4
|
+
* 65 FAQs across 7 categories, accurate to the LetItRip platform:
|
|
5
|
+
* - Multi-seller Pokemon TCG marketplace with auctions
|
|
6
|
+
* - Returns and free shipping are store-level policies (not platform-wide)
|
|
7
|
+
* - Platform can issue coupons / promo codes
|
|
8
|
+
* - India-focused (INR, GST, Indian payment methods)
|
|
13
9
|
*
|
|
14
|
-
*
|
|
10
|
+
* Categories:
|
|
11
|
+
* general — 10 FAQs
|
|
12
|
+
* orders_payment — 12 FAQs
|
|
13
|
+
* shipping_delivery — 10 FAQs
|
|
14
|
+
* returns_refunds — 10 FAQs
|
|
15
|
+
* product_information — 10 FAQs
|
|
16
|
+
* account_security — 8 FAQs
|
|
17
|
+
* technical_support — 5 FAQs
|
|
15
18
|
*/
|
|
16
|
-
const FAQ_CATEGORY_MAP = {
|
|
17
|
-
general: "general",
|
|
18
|
-
shipping: "shipping_delivery",
|
|
19
|
-
returns: "returns_refunds",
|
|
20
|
-
payment: "orders_payment",
|
|
21
|
-
account: "account_security",
|
|
22
|
-
products: "product_information",
|
|
23
|
-
sellers: "general",
|
|
24
|
-
};
|
|
25
19
|
function buildSearchTokens(input) {
|
|
26
20
|
const rawText = [input.question, input.answer, input.category, ...input.tags]
|
|
27
21
|
.filter(Boolean)
|
|
@@ -29,19 +23,18 @@ function buildSearchTokens(input) {
|
|
|
29
23
|
.toLowerCase();
|
|
30
24
|
return Array.from(new Set(rawText
|
|
31
25
|
.split(/[^a-z0-9]+/i)
|
|
32
|
-
.map((
|
|
33
|
-
.filter((
|
|
26
|
+
.map((t) => t.trim())
|
|
27
|
+
.filter((t) => t.length >= 2))).slice(0, 50);
|
|
34
28
|
}
|
|
35
29
|
function normalizeFaqSeed(faq) {
|
|
36
|
-
const category = FAQ_CATEGORY_MAP[faq.category] ?? "general";
|
|
37
30
|
return {
|
|
38
31
|
id: faq.id ?? "",
|
|
39
32
|
question: faq.question,
|
|
40
33
|
answer: {
|
|
41
34
|
text: faq.answer,
|
|
42
|
-
format: "
|
|
35
|
+
format: faq.format ?? "html",
|
|
43
36
|
},
|
|
44
|
-
category,
|
|
37
|
+
category: faq.category,
|
|
45
38
|
showOnHomepage: faq.showOnHomepage,
|
|
46
39
|
showInFooter: faq.showInFooter,
|
|
47
40
|
isPinned: faq.isPinned,
|
|
@@ -51,2284 +44,2178 @@ function normalizeFaqSeed(faq) {
|
|
|
51
44
|
searchTokens: buildSearchTokens({
|
|
52
45
|
question: faq.question,
|
|
53
46
|
answer: faq.answer,
|
|
54
|
-
category,
|
|
47
|
+
category: faq.category,
|
|
55
48
|
tags: faq.tags,
|
|
56
49
|
}),
|
|
57
50
|
relatedFAQs: faq.relatedFAQs,
|
|
58
51
|
useSiteSettings: faq.useSiteSettings,
|
|
59
|
-
variables:
|
|
52
|
+
variables: faq.variables,
|
|
60
53
|
stats: faq.stats,
|
|
61
54
|
seo: faq.seo,
|
|
62
55
|
isActive: faq.isActive,
|
|
63
56
|
createdBy: faq.createdBy,
|
|
64
57
|
};
|
|
65
58
|
}
|
|
66
|
-
|
|
59
|
+
const RAW_FAQS = [
|
|
67
60
|
// ============================================
|
|
68
|
-
// GENERAL
|
|
61
|
+
// GENERAL — 10 FAQs
|
|
69
62
|
// ============================================
|
|
70
63
|
{
|
|
71
64
|
question: "What is LetItRip?",
|
|
72
|
-
answer: "LetItRip is a multi-seller
|
|
65
|
+
answer: "<p>LetItRip is a curated multi-seller marketplace for <strong>Pokemon TCG cards and collectibles</strong>. Browse thousands of singles, sealed products, and PSA/BGS graded cards from verified sellers across India. You can also participate in live auctions to win rare cards.</p>",
|
|
73
66
|
category: "general",
|
|
74
67
|
showOnHomepage: true,
|
|
75
68
|
showInFooter: true,
|
|
76
69
|
isPinned: true,
|
|
77
70
|
order: 1,
|
|
78
71
|
priority: 10,
|
|
79
|
-
tags: ["about", "platform", "introduction"],
|
|
72
|
+
tags: ["about", "platform", "introduction", "pokemon", "tcg"],
|
|
80
73
|
relatedFAQs: [],
|
|
81
74
|
useSiteSettings: false,
|
|
82
|
-
|
|
83
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
75
|
+
stats: { views: 1240, helpful: 890, notHelpful: 42 },
|
|
84
76
|
seo: {
|
|
85
77
|
slug: "what-is-letitrip",
|
|
86
|
-
metaTitle: "What is LetItRip? |
|
|
87
|
-
metaDescription: "
|
|
78
|
+
metaTitle: "What is LetItRip? | Pokemon TCG Marketplace & Auctions India",
|
|
79
|
+
metaDescription: "LetItRip is India's trusted multi-seller marketplace for Pokemon TCG singles, sealed products, graded cards and live auctions.",
|
|
88
80
|
},
|
|
89
81
|
isActive: true,
|
|
90
82
|
createdBy: "system",
|
|
91
83
|
},
|
|
92
84
|
{
|
|
93
85
|
question: "How do I contact customer support?",
|
|
94
|
-
answer: "You can reach our
|
|
86
|
+
answer: "<p>You can reach our support team at <strong>{{supportEmail}}</strong> or call <strong>{{supportPhone}}</strong>. We're available <strong>Monday to Saturday, 10 AM – 6 PM IST</strong>.</p><p>For seller-specific issues (shipping delays, return requests), please contact the seller directly via the order page first.</p>",
|
|
95
87
|
category: "general",
|
|
96
88
|
showOnHomepage: true,
|
|
97
89
|
showInFooter: true,
|
|
98
90
|
isPinned: false,
|
|
99
91
|
order: 2,
|
|
100
92
|
priority: 9,
|
|
101
|
-
tags: ["support", "contact", "help"],
|
|
93
|
+
tags: ["support", "contact", "help", "email", "phone"],
|
|
102
94
|
relatedFAQs: [],
|
|
103
95
|
useSiteSettings: true,
|
|
104
|
-
|
|
105
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
96
|
+
stats: { views: 980, helpful: 720, notHelpful: 38 },
|
|
106
97
|
seo: {
|
|
107
98
|
slug: "contact-customer-support",
|
|
108
|
-
metaTitle: "
|
|
109
|
-
metaDescription: "
|
|
99
|
+
metaTitle: "Contact LetItRip Customer Support | Help Centre",
|
|
100
|
+
metaDescription: "Reach LetItRip support by email or phone. Available Mon–Sat, 10 AM to 6 PM IST.",
|
|
110
101
|
},
|
|
111
102
|
isActive: true,
|
|
112
103
|
createdBy: "system",
|
|
113
104
|
},
|
|
114
105
|
{
|
|
115
|
-
question: "Is
|
|
116
|
-
answer: "
|
|
106
|
+
question: "Is LetItRip available across India?",
|
|
107
|
+
answer: "<p>Yes. LetItRip is accessible from anywhere in India. Delivery availability and shipping timelines depend on the individual seller's shipping policy and their chosen courier partners. Check each product listing for delivery eligibility to your pincode.</p>",
|
|
117
108
|
category: "general",
|
|
118
109
|
showOnHomepage: false,
|
|
119
|
-
showInFooter:
|
|
110
|
+
showInFooter: false,
|
|
120
111
|
isPinned: false,
|
|
121
112
|
order: 3,
|
|
122
|
-
priority:
|
|
123
|
-
tags: ["
|
|
113
|
+
priority: 7,
|
|
114
|
+
tags: ["india", "availability", "locations", "delivery"],
|
|
124
115
|
relatedFAQs: [],
|
|
125
116
|
useSiteSettings: false,
|
|
126
|
-
|
|
127
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
117
|
+
stats: { views: 560, helpful: 430, notHelpful: 18 },
|
|
128
118
|
seo: {
|
|
129
|
-
slug: "
|
|
130
|
-
metaTitle: "
|
|
131
|
-
metaDescription: "
|
|
119
|
+
slug: "letitrip-availability-india",
|
|
120
|
+
metaTitle: "Is LetItRip Available Across India? | Coverage & Delivery",
|
|
121
|
+
metaDescription: "LetItRip is accessible across India. Delivery depends on each seller's shipping policy and pincode coverage.",
|
|
132
122
|
},
|
|
133
123
|
isActive: true,
|
|
134
124
|
createdBy: "system",
|
|
135
125
|
},
|
|
136
126
|
{
|
|
137
|
-
question: "Do
|
|
138
|
-
answer: "No
|
|
127
|
+
question: "Do I need an account to browse listings?",
|
|
128
|
+
answer: "<p>No — you can browse all product listings, auctions, and store pages without signing in. However, you need an account to <strong>place bids, add items to your wishlist, write reviews, or make purchases</strong>.</p>",
|
|
139
129
|
category: "general",
|
|
140
130
|
showOnHomepage: false,
|
|
141
|
-
showInFooter:
|
|
131
|
+
showInFooter: false,
|
|
142
132
|
isPinned: false,
|
|
143
133
|
order: 4,
|
|
144
|
-
priority:
|
|
145
|
-
tags: ["
|
|
134
|
+
priority: 6,
|
|
135
|
+
tags: ["account", "browse", "guest", "login"],
|
|
146
136
|
relatedFAQs: [],
|
|
147
137
|
useSiteSettings: false,
|
|
148
|
-
|
|
149
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
138
|
+
stats: { views: 410, helpful: 320, notHelpful: 12 },
|
|
150
139
|
seo: {
|
|
151
|
-
slug: "
|
|
152
|
-
metaTitle: "
|
|
153
|
-
metaDescription: "
|
|
140
|
+
slug: "do-i-need-account-to-browse",
|
|
141
|
+
metaTitle: "Do I Need an Account to Browse LetItRip? | FAQ",
|
|
142
|
+
metaDescription: "Browse LetItRip listings freely without an account. An account is required to buy, bid, or wishlist items.",
|
|
154
143
|
},
|
|
155
144
|
isActive: true,
|
|
156
145
|
createdBy: "system",
|
|
157
146
|
},
|
|
158
147
|
{
|
|
159
|
-
question: "
|
|
160
|
-
answer: "We
|
|
148
|
+
question: "How are sellers verified on LetItRip?",
|
|
149
|
+
answer: "<p>All sellers on LetItRip go through an onboarding review before their store goes live. We verify identity documents, check product authenticity claims, and review listing quality. Sellers who consistently receive good feedback and maintain return policies earn a <strong>Verified Seller</strong> badge.</p><p>We encourage buyers to always check a store's ratings and reviews before purchasing high-value cards.</p>",
|
|
161
150
|
category: "general",
|
|
162
|
-
showOnHomepage:
|
|
151
|
+
showOnHomepage: false,
|
|
163
152
|
showInFooter: false,
|
|
164
153
|
isPinned: false,
|
|
165
154
|
order: 5,
|
|
166
|
-
priority:
|
|
167
|
-
tags: ["
|
|
155
|
+
priority: 8,
|
|
156
|
+
tags: ["sellers", "verified", "trust", "authenticity"],
|
|
168
157
|
relatedFAQs: [],
|
|
169
158
|
useSiteSettings: false,
|
|
170
|
-
|
|
171
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
159
|
+
stats: { views: 730, helpful: 610, notHelpful: 28 },
|
|
172
160
|
seo: {
|
|
173
|
-
slug: "
|
|
174
|
-
metaTitle: "
|
|
175
|
-
metaDescription: "
|
|
161
|
+
slug: "how-are-sellers-verified",
|
|
162
|
+
metaTitle: "How Are Sellers Verified on LetItRip? | Trust & Safety",
|
|
163
|
+
metaDescription: "LetItRip verifies all sellers through identity review, authenticity checks, and listing quality assessments.",
|
|
176
164
|
},
|
|
177
165
|
isActive: true,
|
|
178
166
|
createdBy: "system",
|
|
179
167
|
},
|
|
180
168
|
{
|
|
181
|
-
question: "
|
|
182
|
-
answer:
|
|
169
|
+
question: "What types of products can I find on LetItRip?",
|
|
170
|
+
answer: "<ul><li><strong>Pokemon TCG Singles</strong> — Base Set, Jungle, Fossil, Neo, EX, VMAX, and modern sets</li><li><strong>Sealed Products</strong> — Booster packs, booster boxes, Elite Trainer Boxes</li><li><strong>Graded Cards</strong> — PSA, BGS, CGC slabs</li><li><strong>Accessories</strong> — Card sleeves, binders, deck boxes, top loaders</li></ul><p>We focus exclusively on Pokemon TCG to ensure quality and expertise across every listing.</p>",
|
|
183
171
|
category: "general",
|
|
184
|
-
showOnHomepage:
|
|
172
|
+
showOnHomepage: true,
|
|
185
173
|
showInFooter: false,
|
|
186
174
|
isPinned: false,
|
|
187
175
|
order: 6,
|
|
188
|
-
priority:
|
|
189
|
-
tags: ["
|
|
176
|
+
priority: 8,
|
|
177
|
+
tags: ["products", "singles", "sealed", "graded", "accessories", "pokemon"],
|
|
190
178
|
relatedFAQs: [],
|
|
191
179
|
useSiteSettings: false,
|
|
192
|
-
|
|
193
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
180
|
+
stats: { views: 820, helpful: 680, notHelpful: 22 },
|
|
194
181
|
seo: {
|
|
195
|
-
slug: "
|
|
196
|
-
metaTitle: "
|
|
197
|
-
metaDescription: "
|
|
182
|
+
slug: "what-products-on-letitrip",
|
|
183
|
+
metaTitle: "What Products Are on LetItRip? | Pokemon TCG Marketplace",
|
|
184
|
+
metaDescription: "Find Pokemon TCG singles, sealed booster boxes, PSA graded cards, and accessories from verified sellers.",
|
|
198
185
|
},
|
|
199
186
|
isActive: true,
|
|
200
187
|
createdBy: "system",
|
|
201
188
|
},
|
|
202
189
|
{
|
|
203
|
-
question: "Can I
|
|
204
|
-
answer: "Yes, you can
|
|
190
|
+
question: "Can I sell on LetItRip?",
|
|
191
|
+
answer: "<p>Yes! If you're a Pokemon TCG collector or dealer, you can apply to open a store on LetItRip. Visit the <strong>Sell on LetItRip</strong> page to submit your application. Our team reviews applications within 3–5 business days.</p><p>Each seller sets their own pricing, shipping rates, and return policy.</p>",
|
|
205
192
|
category: "general",
|
|
206
193
|
showOnHomepage: false,
|
|
207
|
-
showInFooter:
|
|
194
|
+
showInFooter: true,
|
|
208
195
|
isPinned: false,
|
|
209
196
|
order: 7,
|
|
210
|
-
priority:
|
|
211
|
-
tags: ["
|
|
197
|
+
priority: 7,
|
|
198
|
+
tags: ["sell", "seller", "store", "open-store"],
|
|
212
199
|
relatedFAQs: [],
|
|
213
200
|
useSiteSettings: false,
|
|
214
|
-
|
|
215
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
201
|
+
stats: { views: 640, helpful: 530, notHelpful: 24 },
|
|
216
202
|
seo: {
|
|
217
|
-
slug: "
|
|
218
|
-
metaTitle: "
|
|
219
|
-
metaDescription: "
|
|
203
|
+
slug: "can-i-sell-on-letitrip",
|
|
204
|
+
metaTitle: "Can I Sell on LetItRip? | Open a Pokemon TCG Store",
|
|
205
|
+
metaDescription: "Apply to sell Pokemon TCG cards on LetItRip. Set your own pricing, shipping, and return policy.",
|
|
220
206
|
},
|
|
221
207
|
isActive: true,
|
|
222
208
|
createdBy: "system",
|
|
223
209
|
},
|
|
224
210
|
{
|
|
225
|
-
question: "
|
|
226
|
-
answer: "
|
|
211
|
+
question: "Does LetItRip have a mobile app?",
|
|
212
|
+
answer: "<p>Our <strong>mobile-optimised website</strong> works on all smartphones and tablets. A dedicated app is on our roadmap — follow our social pages for launch announcements.</p>",
|
|
227
213
|
category: "general",
|
|
228
|
-
showOnHomepage:
|
|
214
|
+
showOnHomepage: false,
|
|
229
215
|
showInFooter: false,
|
|
230
216
|
isPinned: false,
|
|
231
217
|
order: 8,
|
|
232
|
-
priority:
|
|
233
|
-
tags: ["
|
|
218
|
+
priority: 4,
|
|
219
|
+
tags: ["app", "mobile", "android", "ios"],
|
|
234
220
|
relatedFAQs: [],
|
|
235
221
|
useSiteSettings: false,
|
|
236
|
-
|
|
237
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
222
|
+
stats: { views: 390, helpful: 280, notHelpful: 35 },
|
|
238
223
|
seo: {
|
|
239
|
-
slug: "
|
|
240
|
-
metaTitle: "
|
|
241
|
-
metaDescription: "
|
|
224
|
+
slug: "letitrip-mobile-app",
|
|
225
|
+
metaTitle: "Does LetItRip Have a Mobile App? | FAQ",
|
|
226
|
+
metaDescription: "LetItRip is optimised for mobile browsers. A dedicated app is coming soon.",
|
|
242
227
|
},
|
|
243
228
|
isActive: true,
|
|
244
229
|
createdBy: "system",
|
|
245
230
|
},
|
|
246
231
|
{
|
|
247
|
-
question: "
|
|
248
|
-
answer: "
|
|
232
|
+
question: "How do I report a fake or misrepresented listing?",
|
|
233
|
+
answer: "<p>On any product page, click the <strong>Report Listing</strong> link and describe the issue. Our moderation team reviews reports within 24 hours. Listings found to be fake or misrepresented are immediately removed and the seller is flagged.</p><p>For urgent issues, email us at <strong>{{supportEmail}}</strong> with the listing URL and photo evidence.</p>",
|
|
249
234
|
category: "general",
|
|
250
235
|
showOnHomepage: false,
|
|
251
236
|
showInFooter: false,
|
|
252
237
|
isPinned: false,
|
|
253
238
|
order: 9,
|
|
254
|
-
priority:
|
|
255
|
-
tags: ["
|
|
239
|
+
priority: 8,
|
|
240
|
+
tags: ["fake", "fraud", "report", "counterfeit", "authenticity"],
|
|
256
241
|
relatedFAQs: [],
|
|
257
|
-
useSiteSettings:
|
|
258
|
-
|
|
259
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
242
|
+
useSiteSettings: true,
|
|
243
|
+
stats: { views: 520, helpful: 460, notHelpful: 15 },
|
|
260
244
|
seo: {
|
|
261
|
-
slug: "
|
|
262
|
-
metaTitle: "
|
|
263
|
-
metaDescription: "
|
|
245
|
+
slug: "report-fake-listing",
|
|
246
|
+
metaTitle: "How to Report a Fake or Misrepresented Listing | LetItRip",
|
|
247
|
+
metaDescription: "Report counterfeit or misrepresented Pokemon cards on LetItRip. Our team reviews reports within 24 hours.",
|
|
264
248
|
},
|
|
265
249
|
isActive: true,
|
|
266
250
|
createdBy: "system",
|
|
267
251
|
},
|
|
268
252
|
{
|
|
269
|
-
question: "
|
|
270
|
-
answer: "
|
|
253
|
+
question: "Are there any community events or giveaways?",
|
|
254
|
+
answer: "<p>Yes! LetItRip regularly runs <strong>polls, giveaways, surveys, and contests</strong> for the Pokemon TCG community. Check the <strong>Events</strong> section to see what's live right now. Winners are announced on the event page and notified by email.</p>",
|
|
271
255
|
category: "general",
|
|
272
|
-
showOnHomepage:
|
|
256
|
+
showOnHomepage: true,
|
|
273
257
|
showInFooter: false,
|
|
274
258
|
isPinned: false,
|
|
275
259
|
order: 10,
|
|
276
|
-
priority:
|
|
277
|
-
tags: ["
|
|
260
|
+
priority: 6,
|
|
261
|
+
tags: ["events", "giveaway", "community", "contests", "pokemon"],
|
|
278
262
|
relatedFAQs: [],
|
|
279
263
|
useSiteSettings: false,
|
|
280
|
-
|
|
281
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
264
|
+
stats: { views: 480, helpful: 390, notHelpful: 19 },
|
|
282
265
|
seo: {
|
|
283
|
-
slug: "
|
|
284
|
-
metaTitle: "
|
|
285
|
-
metaDescription: "LetItRip
|
|
266
|
+
slug: "community-events-giveaways",
|
|
267
|
+
metaTitle: "Community Events & Giveaways | LetItRip Pokemon TCG",
|
|
268
|
+
metaDescription: "LetItRip hosts polls, giveaways, and contests for Pokemon TCG collectors. Check the Events section for live activities.",
|
|
286
269
|
},
|
|
287
270
|
isActive: true,
|
|
288
271
|
createdBy: "system",
|
|
289
272
|
},
|
|
273
|
+
// ============================================
|
|
274
|
+
// ORDERS & PAYMENT — 12 FAQs
|
|
275
|
+
// ============================================
|
|
290
276
|
{
|
|
291
|
-
question: "
|
|
292
|
-
answer:
|
|
293
|
-
category: "
|
|
277
|
+
question: "What payment methods does LetItRip accept?",
|
|
278
|
+
answer: "<p>We accept a wide range of payment methods through our secure payment gateway:</p><ul><li>UPI (GPay, PhonePe, Paytm, BHIM)</li><li>Net Banking</li><li>Credit and Debit Cards (Visa, Mastercard, RuPay)</li><li>EMI (on eligible cards)</li><li>Wallets (Paytm, Mobikwik)</li></ul><p>All transactions are secured via Razorpay and are PCI-DSS compliant.</p>",
|
|
279
|
+
category: "orders_payment",
|
|
294
280
|
showOnHomepage: false,
|
|
295
281
|
showInFooter: false,
|
|
296
|
-
isPinned:
|
|
297
|
-
order:
|
|
298
|
-
priority:
|
|
299
|
-
tags: ["
|
|
282
|
+
isPinned: true,
|
|
283
|
+
order: 1,
|
|
284
|
+
priority: 10,
|
|
285
|
+
tags: ["payment", "upi", "cards", "emi", "razorpay", "net-banking"],
|
|
300
286
|
relatedFAQs: [],
|
|
301
|
-
useSiteSettings:
|
|
302
|
-
|
|
303
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
287
|
+
useSiteSettings: false,
|
|
288
|
+
stats: { views: 1120, helpful: 890, notHelpful: 30 },
|
|
304
289
|
seo: {
|
|
305
|
-
slug: "
|
|
306
|
-
metaTitle: "
|
|
307
|
-
metaDescription: "
|
|
290
|
+
slug: "accepted-payment-methods",
|
|
291
|
+
metaTitle: "Accepted Payment Methods | LetItRip Checkout",
|
|
292
|
+
metaDescription: "Pay via UPI, cards, net banking, EMI, or wallets. All payments secured through Razorpay.",
|
|
308
293
|
},
|
|
309
294
|
isActive: true,
|
|
310
295
|
createdBy: "system",
|
|
311
296
|
},
|
|
312
297
|
{
|
|
313
|
-
question: "
|
|
314
|
-
answer: "
|
|
315
|
-
category: "
|
|
316
|
-
showOnHomepage:
|
|
317
|
-
showInFooter:
|
|
318
|
-
isPinned:
|
|
319
|
-
order:
|
|
320
|
-
priority:
|
|
321
|
-
tags: ["
|
|
298
|
+
question: "Can I use a coupon or promo code?",
|
|
299
|
+
answer: "<p>Yes! LetItRip issues platform-wide coupons for events like new user offers, seasonal sales, and community milestones. To apply a coupon:</p><ol><li>Add items to your cart</li><li>At checkout, enter the code in the <strong>Promo Code</strong> field</li><li>Click <strong>Apply</strong> — the discount will reflect immediately</li></ol><p>Coupons are issued by LetItRip and may have minimum order values, expiry dates, or category restrictions. Check the <strong>Events</strong> page for currently active codes.</p>",
|
|
300
|
+
category: "orders_payment",
|
|
301
|
+
showOnHomepage: true,
|
|
302
|
+
showInFooter: false,
|
|
303
|
+
isPinned: true,
|
|
304
|
+
order: 2,
|
|
305
|
+
priority: 9,
|
|
306
|
+
tags: ["coupon", "promo-code", "discount", "offer"],
|
|
322
307
|
relatedFAQs: [],
|
|
323
308
|
useSiteSettings: false,
|
|
324
|
-
|
|
325
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
309
|
+
stats: { views: 780, helpful: 640, notHelpful: 28 },
|
|
326
310
|
seo: {
|
|
327
|
-
slug: "
|
|
328
|
-
metaTitle: "
|
|
329
|
-
metaDescription: "LetItRip
|
|
311
|
+
slug: "how-to-use-coupon-promo-code",
|
|
312
|
+
metaTitle: "How to Use a Coupon or Promo Code | LetItRip Checkout",
|
|
313
|
+
metaDescription: "Apply LetItRip coupon codes at checkout for discounts. Check the Events page for active promo codes.",
|
|
330
314
|
},
|
|
331
315
|
isActive: true,
|
|
332
316
|
createdBy: "system",
|
|
333
317
|
},
|
|
334
318
|
{
|
|
335
|
-
question: "
|
|
336
|
-
answer: "
|
|
337
|
-
category: "
|
|
319
|
+
question: "Where can I find active coupons and offers?",
|
|
320
|
+
answer: "<p>All active coupons and offers are published in the <strong>Events</strong> section of the website. You may also receive exclusive codes via email if you're subscribed to our newsletter. Follow us on social media for flash-offer announcements.</p>",
|
|
321
|
+
category: "orders_payment",
|
|
338
322
|
showOnHomepage: false,
|
|
339
323
|
showInFooter: false,
|
|
340
324
|
isPinned: false,
|
|
341
|
-
order:
|
|
325
|
+
order: 3,
|
|
342
326
|
priority: 7,
|
|
343
|
-
tags: ["
|
|
327
|
+
tags: ["coupon", "offers", "events", "newsletter", "discount"],
|
|
344
328
|
relatedFAQs: [],
|
|
345
329
|
useSiteSettings: false,
|
|
346
|
-
|
|
347
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
330
|
+
stats: { views: 540, helpful: 430, notHelpful: 22 },
|
|
348
331
|
seo: {
|
|
349
|
-
slug: "
|
|
350
|
-
metaTitle: "
|
|
351
|
-
metaDescription: "
|
|
332
|
+
slug: "where-to-find-coupons",
|
|
333
|
+
metaTitle: "Where to Find Active Coupons & Offers | LetItRip",
|
|
334
|
+
metaDescription: "Find active coupon codes in the LetItRip Events section or via our newsletter.",
|
|
352
335
|
},
|
|
353
336
|
isActive: true,
|
|
354
337
|
createdBy: "system",
|
|
355
338
|
},
|
|
356
339
|
{
|
|
357
|
-
question: "
|
|
358
|
-
answer: "
|
|
359
|
-
category: "
|
|
340
|
+
question: "Is it safe to pay on LetItRip?",
|
|
341
|
+
answer: "<p>Yes. All payments are processed through <strong>Razorpay</strong>, a PCI-DSS Level 1 certified payment gateway. Your card and UPI details are never stored on our servers. Every transaction is encrypted with TLS 1.3.</p>",
|
|
342
|
+
category: "orders_payment",
|
|
360
343
|
showOnHomepage: false,
|
|
361
344
|
showInFooter: false,
|
|
362
345
|
isPinned: false,
|
|
363
|
-
order:
|
|
364
|
-
priority:
|
|
365
|
-
tags: ["
|
|
346
|
+
order: 4,
|
|
347
|
+
priority: 9,
|
|
348
|
+
tags: ["safe", "secure", "payment", "razorpay", "pci", "encryption"],
|
|
366
349
|
relatedFAQs: [],
|
|
367
350
|
useSiteSettings: false,
|
|
368
|
-
|
|
369
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
351
|
+
stats: { views: 870, helpful: 740, notHelpful: 25 },
|
|
370
352
|
seo: {
|
|
371
|
-
slug: "
|
|
372
|
-
metaTitle: "
|
|
373
|
-
metaDescription: "
|
|
353
|
+
slug: "is-it-safe-to-pay",
|
|
354
|
+
metaTitle: "Is It Safe to Pay on LetItRip? | Secure Checkout",
|
|
355
|
+
metaDescription: "Payments on LetItRip are secured via Razorpay (PCI-DSS Level 1). Your payment details are never stored.",
|
|
374
356
|
},
|
|
375
357
|
isActive: true,
|
|
376
358
|
createdBy: "system",
|
|
377
359
|
},
|
|
378
360
|
{
|
|
379
|
-
question: "
|
|
380
|
-
answer: "
|
|
381
|
-
category: "
|
|
361
|
+
question: "My payment failed — what do I do?",
|
|
362
|
+
answer: "<p>If your payment fails:</p><ol><li>Check that your bank has not blocked the transaction (some banks require 2FA approval)</li><li>Ensure your card/UPI has sufficient balance or limit</li><li>Try a different payment method</li><li>If the amount was debited but your order wasn't placed, it will be automatically refunded within <strong>5–7 business days</strong></li></ol><p>Contact our support at <strong>{{supportEmail}}</strong> if the issue persists.</p>",
|
|
363
|
+
category: "orders_payment",
|
|
382
364
|
showOnHomepage: false,
|
|
383
365
|
showInFooter: false,
|
|
384
366
|
isPinned: false,
|
|
385
|
-
order:
|
|
386
|
-
priority:
|
|
387
|
-
tags: ["
|
|
367
|
+
order: 5,
|
|
368
|
+
priority: 8,
|
|
369
|
+
tags: ["payment-failed", "failed-transaction", "refund", "bank"],
|
|
388
370
|
relatedFAQs: [],
|
|
389
|
-
useSiteSettings:
|
|
390
|
-
|
|
391
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
371
|
+
useSiteSettings: true,
|
|
372
|
+
stats: { views: 690, helpful: 590, notHelpful: 35 },
|
|
392
373
|
seo: {
|
|
393
|
-
slug: "
|
|
394
|
-
metaTitle: "
|
|
395
|
-
metaDescription: "
|
|
374
|
+
slug: "payment-failed-what-to-do",
|
|
375
|
+
metaTitle: "Payment Failed — What to Do? | LetItRip FAQ",
|
|
376
|
+
metaDescription: "Troubleshoot failed payments on LetItRip. Debited amounts are refunded within 5–7 business days.",
|
|
396
377
|
},
|
|
397
378
|
isActive: true,
|
|
398
379
|
createdBy: "system",
|
|
399
380
|
},
|
|
400
381
|
{
|
|
401
|
-
question: "
|
|
402
|
-
answer: "
|
|
403
|
-
category: "
|
|
382
|
+
question: "How do I track my order?",
|
|
383
|
+
answer: "<p>Once the seller ships your order, you'll receive an email with a <strong>tracking number and courier name</strong>. You can also track it from <strong>My Orders</strong> in your account. Click the tracking number to open the courier's tracking portal.</p>",
|
|
384
|
+
category: "orders_payment",
|
|
404
385
|
showOnHomepage: false,
|
|
405
|
-
showInFooter:
|
|
386
|
+
showInFooter: false,
|
|
406
387
|
isPinned: false,
|
|
407
|
-
order:
|
|
408
|
-
priority:
|
|
409
|
-
tags: ["
|
|
388
|
+
order: 6,
|
|
389
|
+
priority: 8,
|
|
390
|
+
tags: ["track", "order", "shipping", "courier", "tracking-number"],
|
|
410
391
|
relatedFAQs: [],
|
|
411
|
-
useSiteSettings:
|
|
412
|
-
|
|
413
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
392
|
+
useSiteSettings: false,
|
|
393
|
+
stats: { views: 920, helpful: 770, notHelpful: 30 },
|
|
414
394
|
seo: {
|
|
415
|
-
slug: "
|
|
416
|
-
metaTitle: "
|
|
417
|
-
metaDescription: "
|
|
395
|
+
slug: "how-to-track-order",
|
|
396
|
+
metaTitle: "How to Track My Order | LetItRip Order Tracking",
|
|
397
|
+
metaDescription: "Track your LetItRip order via email notification or from My Orders in your account.",
|
|
418
398
|
},
|
|
419
399
|
isActive: true,
|
|
420
400
|
createdBy: "system",
|
|
421
401
|
},
|
|
422
402
|
{
|
|
423
|
-
question: "
|
|
424
|
-
answer: "
|
|
425
|
-
category: "
|
|
403
|
+
question: "Can I cancel an order after placing it?",
|
|
404
|
+
answer: "<p>Order cancellation depends on whether the seller has already shipped the item:</p><ul><li><strong>Before shipping:</strong> Contact the seller immediately through the order page. Most sellers can cancel at this stage.</li><li><strong>After shipping:</strong> Cancellations are generally not possible. You would need to go through the seller's return process once the order arrives.</li></ul><p>Auction orders cannot be cancelled after a bid is won.</p>",
|
|
405
|
+
category: "orders_payment",
|
|
426
406
|
showOnHomepage: false,
|
|
427
|
-
showInFooter:
|
|
407
|
+
showInFooter: false,
|
|
428
408
|
isPinned: false,
|
|
429
|
-
order:
|
|
430
|
-
priority:
|
|
431
|
-
tags: ["
|
|
409
|
+
order: 7,
|
|
410
|
+
priority: 7,
|
|
411
|
+
tags: ["cancel", "order-cancellation", "refund"],
|
|
432
412
|
relatedFAQs: [],
|
|
433
413
|
useSiteSettings: false,
|
|
434
|
-
|
|
435
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
414
|
+
stats: { views: 760, helpful: 610, notHelpful: 42 },
|
|
436
415
|
seo: {
|
|
437
|
-
slug: "
|
|
438
|
-
metaTitle: "
|
|
439
|
-
metaDescription: "
|
|
416
|
+
slug: "cancel-order-after-placing",
|
|
417
|
+
metaTitle: "Can I Cancel My Order After Placing It? | LetItRip FAQ",
|
|
418
|
+
metaDescription: "Orders can be cancelled before shipment by contacting the seller. Shipped orders follow the seller's return policy.",
|
|
440
419
|
},
|
|
441
420
|
isActive: true,
|
|
442
421
|
createdBy: "system",
|
|
443
422
|
},
|
|
444
423
|
{
|
|
445
|
-
question: "
|
|
446
|
-
answer: "
|
|
447
|
-
category: "
|
|
424
|
+
question: "Will I receive a GST invoice for my purchase?",
|
|
425
|
+
answer: "<p>Invoices are issued by the individual sellers. If a seller is GST-registered, you'll receive a GST invoice from them. To request a GST invoice, contact the seller via the order page and provide your GSTIN. LetItRip does not issue invoices on behalf of sellers.</p>",
|
|
426
|
+
category: "orders_payment",
|
|
448
427
|
showOnHomepage: false,
|
|
449
428
|
showInFooter: false,
|
|
450
429
|
isPinned: false,
|
|
451
|
-
order:
|
|
452
|
-
priority:
|
|
453
|
-
tags: ["
|
|
430
|
+
order: 8,
|
|
431
|
+
priority: 6,
|
|
432
|
+
tags: ["gst", "invoice", "tax", "gstin"],
|
|
454
433
|
relatedFAQs: [],
|
|
455
434
|
useSiteSettings: false,
|
|
456
|
-
|
|
457
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
435
|
+
stats: { views: 440, helpful: 370, notHelpful: 28 },
|
|
458
436
|
seo: {
|
|
459
|
-
slug: "
|
|
460
|
-
metaTitle: "
|
|
461
|
-
metaDescription: "
|
|
437
|
+
slug: "gst-invoice-purchase",
|
|
438
|
+
metaTitle: "Will I Get a GST Invoice? | LetItRip Tax & Billing",
|
|
439
|
+
metaDescription: "GST invoices are issued by individual sellers. Contact the seller with your GSTIN to request one.",
|
|
462
440
|
},
|
|
463
441
|
isActive: true,
|
|
464
442
|
createdBy: "system",
|
|
465
443
|
},
|
|
466
444
|
{
|
|
467
|
-
question: "
|
|
468
|
-
answer: "
|
|
469
|
-
category: "
|
|
470
|
-
showOnHomepage:
|
|
471
|
-
showInFooter:
|
|
472
|
-
isPinned:
|
|
473
|
-
order:
|
|
474
|
-
priority:
|
|
475
|
-
tags: ["
|
|
445
|
+
question: "How do auctions work on LetItRip?",
|
|
446
|
+
answer: "<p>Here's how live auctions work:</p><ol><li>Find an auction listing with an active countdown timer</li><li>Click <strong>Place Bid</strong> and enter an amount higher than the current bid</li><li>If your bid is the highest when the timer ends, you win the auction</li><li>You'll receive a payment link / checkout prompt to complete the purchase</li></ol><p>All bids are binding. If you win, you must complete the purchase. Failing to pay after winning may result in account suspension.</p>",
|
|
447
|
+
category: "orders_payment",
|
|
448
|
+
showOnHomepage: true,
|
|
449
|
+
showInFooter: false,
|
|
450
|
+
isPinned: true,
|
|
451
|
+
order: 9,
|
|
452
|
+
priority: 9,
|
|
453
|
+
tags: ["auction", "bid", "bidding", "how-it-works", "live-auction"],
|
|
476
454
|
relatedFAQs: [],
|
|
477
|
-
useSiteSettings:
|
|
478
|
-
|
|
479
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
455
|
+
useSiteSettings: false,
|
|
456
|
+
stats: { views: 1050, helpful: 890, notHelpful: 38 },
|
|
480
457
|
seo: {
|
|
481
|
-
slug: "
|
|
482
|
-
metaTitle: "
|
|
483
|
-
metaDescription: "
|
|
458
|
+
slug: "how-auctions-work",
|
|
459
|
+
metaTitle: "How Do Auctions Work on LetItRip? | Live Auction Guide",
|
|
460
|
+
metaDescription: "Place bids on Pokemon TCG cards in LetItRip live auctions. Highest bidder when the timer ends wins.",
|
|
484
461
|
},
|
|
485
462
|
isActive: true,
|
|
486
463
|
createdBy: "system",
|
|
487
464
|
},
|
|
488
465
|
{
|
|
489
|
-
question: "
|
|
490
|
-
answer: "
|
|
491
|
-
category: "
|
|
466
|
+
question: "What happens if I win an auction but don't pay?",
|
|
467
|
+
answer: "<p>All bids are binding commitments. If you win an auction and fail to complete payment within the required window, your bid will be voided, the seller may re-list the item, and your account may be <strong>suspended from future bidding</strong>. Repeat non-payment leads to permanent ban from auctions.</p>",
|
|
468
|
+
category: "orders_payment",
|
|
492
469
|
showOnHomepage: false,
|
|
493
470
|
showInFooter: false,
|
|
494
471
|
isPinned: false,
|
|
495
|
-
order:
|
|
496
|
-
priority:
|
|
497
|
-
tags: ["
|
|
472
|
+
order: 10,
|
|
473
|
+
priority: 8,
|
|
474
|
+
tags: ["auction", "non-payment", "bid", "suspension"],
|
|
498
475
|
relatedFAQs: [],
|
|
499
|
-
useSiteSettings:
|
|
500
|
-
|
|
501
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
476
|
+
useSiteSettings: false,
|
|
477
|
+
stats: { views: 510, helpful: 420, notHelpful: 20 },
|
|
502
478
|
seo: {
|
|
503
|
-
slug: "
|
|
504
|
-
metaTitle: "
|
|
505
|
-
metaDescription: "
|
|
479
|
+
slug: "auction-non-payment-policy",
|
|
480
|
+
metaTitle: "What Happens If I Win but Don't Pay? | Auction Policy",
|
|
481
|
+
metaDescription: "Failing to pay after winning an auction may result in account suspension from future bidding on LetItRip.",
|
|
506
482
|
},
|
|
507
483
|
isActive: true,
|
|
508
484
|
createdBy: "system",
|
|
509
485
|
},
|
|
510
|
-
// ============================================
|
|
511
|
-
// SHIPPING (15 FAQs)
|
|
512
|
-
// ============================================
|
|
513
486
|
{
|
|
514
|
-
question: "
|
|
515
|
-
answer: "
|
|
516
|
-
category: "
|
|
517
|
-
showOnHomepage:
|
|
487
|
+
question: "Can I place a bid on multiple items at once?",
|
|
488
|
+
answer: "<p>Yes, you can have active bids on multiple auction listings simultaneously. Just keep in mind that winning all of them means you must pay for all of them. Manage your budget carefully before bidding across multiple auctions.</p>",
|
|
489
|
+
category: "orders_payment",
|
|
490
|
+
showOnHomepage: false,
|
|
518
491
|
showInFooter: false,
|
|
519
492
|
isPinned: false,
|
|
520
|
-
order:
|
|
521
|
-
priority:
|
|
522
|
-
tags: ["
|
|
493
|
+
order: 11,
|
|
494
|
+
priority: 5,
|
|
495
|
+
tags: ["auction", "multiple-bids", "bidding"],
|
|
523
496
|
relatedFAQs: [],
|
|
524
497
|
useSiteSettings: false,
|
|
525
|
-
|
|
526
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
498
|
+
stats: { views: 320, helpful: 260, notHelpful: 14 },
|
|
527
499
|
seo: {
|
|
528
|
-
slug: "
|
|
529
|
-
metaTitle: "
|
|
530
|
-
metaDescription: "
|
|
500
|
+
slug: "bid-on-multiple-auctions",
|
|
501
|
+
metaTitle: "Can I Bid on Multiple Auctions at Once? | LetItRip FAQ",
|
|
502
|
+
metaDescription: "You can place active bids on multiple LetItRip auctions simultaneously. Winning all bids requires payment for each.",
|
|
531
503
|
},
|
|
532
504
|
isActive: true,
|
|
533
505
|
createdBy: "system",
|
|
534
506
|
},
|
|
535
507
|
{
|
|
536
|
-
question: "
|
|
537
|
-
answer: "
|
|
538
|
-
category: "
|
|
508
|
+
question: "Will I be notified if I'm outbid?",
|
|
509
|
+
answer: "<p>Yes. You'll receive an <strong>email and in-app notification</strong> when another buyer outbids you. You can then return to the listing and place a higher bid before the auction ends. Enable browser notifications for real-time alerts.</p>",
|
|
510
|
+
category: "orders_payment",
|
|
539
511
|
showOnHomepage: false,
|
|
540
512
|
showInFooter: false,
|
|
541
513
|
isPinned: false,
|
|
542
|
-
order:
|
|
543
|
-
priority:
|
|
544
|
-
tags: ["
|
|
514
|
+
order: 12,
|
|
515
|
+
priority: 6,
|
|
516
|
+
tags: ["outbid", "notification", "auction", "bid"],
|
|
545
517
|
relatedFAQs: [],
|
|
546
518
|
useSiteSettings: false,
|
|
547
|
-
|
|
548
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
519
|
+
stats: { views: 430, helpful: 370, notHelpful: 16 },
|
|
549
520
|
seo: {
|
|
550
|
-
slug: "
|
|
551
|
-
metaTitle: "
|
|
552
|
-
metaDescription: "
|
|
521
|
+
slug: "outbid-notification",
|
|
522
|
+
metaTitle: "Will I Be Notified If Outbid? | LetItRip Auction Alerts",
|
|
523
|
+
metaDescription: "LetItRip sends email and in-app alerts when you're outbid in an auction so you can place a higher bid.",
|
|
553
524
|
},
|
|
554
525
|
isActive: true,
|
|
555
526
|
createdBy: "system",
|
|
556
527
|
},
|
|
528
|
+
// ============================================
|
|
529
|
+
// SHIPPING & DELIVERY — 10 FAQs
|
|
530
|
+
// ============================================
|
|
557
531
|
{
|
|
558
|
-
question: "
|
|
559
|
-
answer: "
|
|
560
|
-
category: "
|
|
532
|
+
question: "Who handles shipping on LetItRip?",
|
|
533
|
+
answer: "<p>Each seller manages their own shipping. LetItRip is a <strong>marketplace platform</strong> — we don't warehouse or ship products ourselves. Sellers partner with couriers such as Delhivery, BlueDart, India Post, or others of their choice. Shipping timelines, rates, and courier options vary by store.</p>",
|
|
534
|
+
category: "shipping_delivery",
|
|
561
535
|
showOnHomepage: false,
|
|
562
|
-
showInFooter:
|
|
563
|
-
isPinned:
|
|
564
|
-
order:
|
|
565
|
-
priority:
|
|
566
|
-
tags: ["
|
|
536
|
+
showInFooter: true,
|
|
537
|
+
isPinned: true,
|
|
538
|
+
order: 1,
|
|
539
|
+
priority: 10,
|
|
540
|
+
tags: ["shipping", "seller", "courier", "marketplace", "delhivery"],
|
|
567
541
|
relatedFAQs: [],
|
|
568
542
|
useSiteSettings: false,
|
|
569
|
-
|
|
570
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
543
|
+
stats: { views: 890, helpful: 740, notHelpful: 35 },
|
|
571
544
|
seo: {
|
|
572
|
-
slug: "
|
|
573
|
-
metaTitle: "
|
|
574
|
-
metaDescription: "
|
|
545
|
+
slug: "who-handles-shipping",
|
|
546
|
+
metaTitle: "Who Handles Shipping on LetItRip? | Seller Shipping Policy",
|
|
547
|
+
metaDescription: "Shipping on LetItRip is managed by each individual seller. Rates and couriers vary by store.",
|
|
575
548
|
},
|
|
576
549
|
isActive: true,
|
|
577
550
|
createdBy: "system",
|
|
578
551
|
},
|
|
579
552
|
{
|
|
580
|
-
question: "
|
|
581
|
-
answer: "
|
|
582
|
-
category: "
|
|
553
|
+
question: "Is free shipping available?",
|
|
554
|
+
answer: "<p>Free shipping is <strong>not guaranteed platform-wide</strong>. It is entirely at the discretion of individual sellers. Some sellers offer free shipping on specific products, on orders above a minimum value, or during promotional events. Always check the product listing and the seller's store page for their current shipping offer.</p>",
|
|
555
|
+
category: "shipping_delivery",
|
|
583
556
|
showOnHomepage: false,
|
|
584
|
-
showInFooter:
|
|
585
|
-
isPinned:
|
|
586
|
-
order:
|
|
587
|
-
priority:
|
|
588
|
-
tags: ["
|
|
557
|
+
showInFooter: true,
|
|
558
|
+
isPinned: true,
|
|
559
|
+
order: 2,
|
|
560
|
+
priority: 10,
|
|
561
|
+
tags: ["free-shipping", "shipping-cost", "seller-policy"],
|
|
589
562
|
relatedFAQs: [],
|
|
590
|
-
useSiteSettings:
|
|
591
|
-
|
|
592
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
563
|
+
useSiteSettings: false,
|
|
564
|
+
stats: { views: 1100, helpful: 900, notHelpful: 50 },
|
|
593
565
|
seo: {
|
|
594
|
-
slug: "
|
|
595
|
-
metaTitle: "
|
|
596
|
-
metaDescription: "
|
|
566
|
+
slug: "is-free-shipping-available",
|
|
567
|
+
metaTitle: "Is Free Shipping Available on LetItRip? | Shipping FAQ",
|
|
568
|
+
metaDescription: "Free shipping on LetItRip depends on the individual seller. Check each product listing for the seller's shipping offer.",
|
|
597
569
|
},
|
|
598
570
|
isActive: true,
|
|
599
571
|
createdBy: "system",
|
|
600
572
|
},
|
|
601
573
|
{
|
|
602
|
-
question: "
|
|
603
|
-
answer: "
|
|
604
|
-
category: "
|
|
574
|
+
question: "How long does delivery take?",
|
|
575
|
+
answer: "<p>Delivery timelines depend on the seller's location, your location, and the courier used. Typical estimates:</p><ul><li><strong>Metro cities:</strong> 2–4 business days</li><li><strong>Tier 2/3 cities:</strong> 4–7 business days</li><li><strong>Remote areas:</strong> 7–14 business days</li></ul><p>Check the product listing or the seller's store page for their estimated dispatch time.</p>",
|
|
576
|
+
category: "shipping_delivery",
|
|
605
577
|
showOnHomepage: false,
|
|
606
578
|
showInFooter: false,
|
|
607
579
|
isPinned: false,
|
|
608
|
-
order:
|
|
609
|
-
priority:
|
|
610
|
-
tags: ["delivery", "
|
|
580
|
+
order: 3,
|
|
581
|
+
priority: 8,
|
|
582
|
+
tags: ["delivery-time", "shipping-time", "days", "metro", "courier"],
|
|
611
583
|
relatedFAQs: [],
|
|
612
584
|
useSiteSettings: false,
|
|
613
|
-
|
|
614
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
585
|
+
stats: { views: 940, helpful: 800, notHelpful: 42 },
|
|
615
586
|
seo: {
|
|
616
|
-
slug: "
|
|
617
|
-
metaTitle: "
|
|
618
|
-
metaDescription: "
|
|
587
|
+
slug: "how-long-does-delivery-take",
|
|
588
|
+
metaTitle: "How Long Does Delivery Take? | LetItRip Shipping Times",
|
|
589
|
+
metaDescription: "LetItRip delivery takes 2–4 days in metros and 4–14 days elsewhere, depending on the seller and courier.",
|
|
619
590
|
},
|
|
620
591
|
isActive: true,
|
|
621
592
|
createdBy: "system",
|
|
622
593
|
},
|
|
623
594
|
{
|
|
624
|
-
question: "
|
|
625
|
-
answer: "
|
|
626
|
-
category: "
|
|
595
|
+
question: "Will I get a tracking number after my order ships?",
|
|
596
|
+
answer: "<p>Yes. Once the seller marks your order as shipped, you will receive an <strong>email notification with the tracking number and courier name</strong>. You can also view tracking details on your order page under <strong>My Orders</strong>.</p>",
|
|
597
|
+
category: "shipping_delivery",
|
|
627
598
|
showOnHomepage: false,
|
|
628
599
|
showInFooter: false,
|
|
629
600
|
isPinned: false,
|
|
630
|
-
order:
|
|
631
|
-
priority:
|
|
632
|
-
tags: ["
|
|
601
|
+
order: 4,
|
|
602
|
+
priority: 8,
|
|
603
|
+
tags: ["tracking", "tracking-number", "shipped", "courier"],
|
|
633
604
|
relatedFAQs: [],
|
|
634
605
|
useSiteSettings: false,
|
|
635
|
-
|
|
636
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
606
|
+
stats: { views: 720, helpful: 610, notHelpful: 28 },
|
|
637
607
|
seo: {
|
|
638
|
-
slug: "
|
|
639
|
-
metaTitle: "
|
|
640
|
-
metaDescription: "
|
|
608
|
+
slug: "will-i-get-tracking-number",
|
|
609
|
+
metaTitle: "Will I Get a Tracking Number? | LetItRip Shipment Tracking",
|
|
610
|
+
metaDescription: "Receive a tracking number by email once your seller ships your LetItRip order. Track via My Orders too.",
|
|
641
611
|
},
|
|
642
612
|
isActive: true,
|
|
643
613
|
createdBy: "system",
|
|
644
614
|
},
|
|
645
615
|
{
|
|
646
|
-
question: "
|
|
647
|
-
answer: "
|
|
648
|
-
category: "
|
|
616
|
+
question: "How are graded cards (PSA/BGS slabs) packaged for shipping?",
|
|
617
|
+
answer: "<p>Sellers who specialise in graded cards typically use <strong>bubble wrap, foam inserts, and rigid cardboard boxes</strong> to protect slabs during transit. Some use double-boxing for extra safety. We strongly recommend purchasing only from sellers who describe their graded card packaging — check their store reviews for buyer feedback on packaging quality.</p>",
|
|
618
|
+
category: "shipping_delivery",
|
|
649
619
|
showOnHomepage: false,
|
|
650
620
|
showInFooter: false,
|
|
651
621
|
isPinned: false,
|
|
652
|
-
order:
|
|
653
|
-
priority:
|
|
654
|
-
tags: ["
|
|
622
|
+
order: 5,
|
|
623
|
+
priority: 7,
|
|
624
|
+
tags: ["graded", "psa", "bgs", "slab", "packaging", "shipping"],
|
|
655
625
|
relatedFAQs: [],
|
|
656
626
|
useSiteSettings: false,
|
|
657
|
-
|
|
658
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
627
|
+
stats: { views: 580, helpful: 500, notHelpful: 18 },
|
|
659
628
|
seo: {
|
|
660
|
-
slug: "
|
|
661
|
-
metaTitle: "
|
|
662
|
-
metaDescription: "
|
|
629
|
+
slug: "graded-card-packaging-shipping",
|
|
630
|
+
metaTitle: "How Are Graded PSA/BGS Slabs Shipped? | LetItRip FAQ",
|
|
631
|
+
metaDescription: "Graded cards on LetItRip are packaged by sellers using bubble wrap and rigid boxes. Check store reviews for packaging quality.",
|
|
663
632
|
},
|
|
664
633
|
isActive: true,
|
|
665
634
|
createdBy: "system",
|
|
666
635
|
},
|
|
667
636
|
{
|
|
668
|
-
question: "
|
|
669
|
-
answer: "
|
|
670
|
-
category: "
|
|
637
|
+
question: "Do sellers ship internationally?",
|
|
638
|
+
answer: "<p>Most LetItRip sellers currently ship within India only. International shipping, if offered, is clearly stated in the seller's store page and product listing. Check the listing for delivery country eligibility before ordering.</p>",
|
|
639
|
+
category: "shipping_delivery",
|
|
671
640
|
showOnHomepage: false,
|
|
672
641
|
showInFooter: false,
|
|
673
642
|
isPinned: false,
|
|
674
|
-
order:
|
|
675
|
-
priority:
|
|
676
|
-
tags: ["
|
|
643
|
+
order: 6,
|
|
644
|
+
priority: 6,
|
|
645
|
+
tags: ["international", "worldwide", "shipping", "india-only"],
|
|
677
646
|
relatedFAQs: [],
|
|
678
647
|
useSiteSettings: false,
|
|
679
|
-
|
|
680
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
648
|
+
stats: { views: 410, helpful: 330, notHelpful: 30 },
|
|
681
649
|
seo: {
|
|
682
|
-
slug: "
|
|
683
|
-
metaTitle: "
|
|
684
|
-
metaDescription: "
|
|
650
|
+
slug: "do-sellers-ship-internationally",
|
|
651
|
+
metaTitle: "Do LetItRip Sellers Ship Internationally? | FAQ",
|
|
652
|
+
metaDescription: "Most LetItRip sellers ship within India. Check each product listing for international shipping availability.",
|
|
685
653
|
},
|
|
686
654
|
isActive: true,
|
|
687
655
|
createdBy: "system",
|
|
688
656
|
},
|
|
689
657
|
{
|
|
690
|
-
question: "
|
|
691
|
-
answer: "
|
|
692
|
-
category: "
|
|
658
|
+
question: "Can I change my delivery address after placing an order?",
|
|
659
|
+
answer: "<p>Address changes after order placement depend on whether the seller has already dispatched the item. Contact the seller immediately through your order page. If the item hasn't shipped yet, sellers can usually update the address. Once shipped, address changes are not possible.</p>",
|
|
660
|
+
category: "shipping_delivery",
|
|
693
661
|
showOnHomepage: false,
|
|
694
662
|
showInFooter: false,
|
|
695
663
|
isPinned: false,
|
|
696
|
-
order:
|
|
664
|
+
order: 7,
|
|
697
665
|
priority: 6,
|
|
698
|
-
tags: ["
|
|
666
|
+
tags: ["address-change", "delivery-address", "order"],
|
|
699
667
|
relatedFAQs: [],
|
|
700
|
-
useSiteSettings:
|
|
701
|
-
|
|
702
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
668
|
+
useSiteSettings: false,
|
|
669
|
+
stats: { views: 380, helpful: 300, notHelpful: 22 },
|
|
703
670
|
seo: {
|
|
704
|
-
slug: "
|
|
705
|
-
metaTitle: "
|
|
706
|
-
metaDescription: "
|
|
671
|
+
slug: "change-delivery-address-after-order",
|
|
672
|
+
metaTitle: "Can I Change My Delivery Address After Ordering? | LetItRip",
|
|
673
|
+
metaDescription: "Contact the seller immediately to change your delivery address. Changes are only possible before the item is shipped.",
|
|
707
674
|
},
|
|
708
675
|
isActive: true,
|
|
709
676
|
createdBy: "system",
|
|
710
677
|
},
|
|
711
678
|
{
|
|
712
|
-
question: "
|
|
713
|
-
answer: "
|
|
714
|
-
category: "
|
|
679
|
+
question: "What happens if my package is lost in transit?",
|
|
680
|
+
answer: "<p>If your package is lost:</p><ol><li>First check the tracking status for the latest courier update</li><li>Contact the seller via your order page — they are responsible for filing a claim with the courier</li><li>If the seller is unresponsive within 48 hours, contact LetItRip support at <strong>{{supportEmail}}</strong></li></ol><p>Sellers are encouraged to use insured shipping for high-value cards.</p>",
|
|
681
|
+
category: "shipping_delivery",
|
|
715
682
|
showOnHomepage: false,
|
|
716
683
|
showInFooter: false,
|
|
717
684
|
isPinned: false,
|
|
718
|
-
order:
|
|
719
|
-
priority:
|
|
720
|
-
tags: ["
|
|
685
|
+
order: 8,
|
|
686
|
+
priority: 8,
|
|
687
|
+
tags: ["lost", "lost-package", "courier", "claim", "transit"],
|
|
721
688
|
relatedFAQs: [],
|
|
722
|
-
useSiteSettings:
|
|
723
|
-
|
|
724
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
689
|
+
useSiteSettings: true,
|
|
690
|
+
stats: { views: 620, helpful: 530, notHelpful: 28 },
|
|
725
691
|
seo: {
|
|
726
|
-
slug: "
|
|
727
|
-
metaTitle: "
|
|
728
|
-
metaDescription: "
|
|
692
|
+
slug: "package-lost-in-transit",
|
|
693
|
+
metaTitle: "What If My Package Is Lost in Transit? | LetItRip FAQ",
|
|
694
|
+
metaDescription: "Contact your seller first if your package is lost. LetItRip support can assist if the seller is unresponsive.",
|
|
729
695
|
},
|
|
730
696
|
isActive: true,
|
|
731
697
|
createdBy: "system",
|
|
732
698
|
},
|
|
733
699
|
{
|
|
734
|
-
question: "
|
|
735
|
-
answer: "
|
|
736
|
-
category: "
|
|
700
|
+
question: "What if my order arrives damaged?",
|
|
701
|
+
answer: "<p>If your order arrives damaged:</p><ol><li><strong>Photograph the damage immediately</strong> — including the outer packaging and the item</li><li>Contact the seller via the order page within <strong>48 hours of delivery</strong></li><li>Share the photos — most sellers will arrange a replacement or refund per their return policy</li><li>If unresolved, contact LetItRip support with your order ID and photos</li></ol>",
|
|
702
|
+
category: "shipping_delivery",
|
|
737
703
|
showOnHomepage: false,
|
|
738
704
|
showInFooter: false,
|
|
739
705
|
isPinned: false,
|
|
740
|
-
order:
|
|
741
|
-
priority:
|
|
742
|
-
tags: ["
|
|
706
|
+
order: 9,
|
|
707
|
+
priority: 9,
|
|
708
|
+
tags: ["damaged", "broken", "delivery", "return", "refund"],
|
|
743
709
|
relatedFAQs: [],
|
|
744
710
|
useSiteSettings: false,
|
|
745
|
-
|
|
746
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
711
|
+
stats: { views: 730, helpful: 640, notHelpful: 30 },
|
|
747
712
|
seo: {
|
|
748
|
-
slug: "
|
|
749
|
-
metaTitle: "
|
|
750
|
-
metaDescription: "
|
|
713
|
+
slug: "order-arrived-damaged",
|
|
714
|
+
metaTitle: "What to Do If My Order Arrives Damaged? | LetItRip FAQ",
|
|
715
|
+
metaDescription: "Photograph damage immediately and contact the seller within 48 hours. LetItRip support can escalate if needed.",
|
|
751
716
|
},
|
|
752
717
|
isActive: true,
|
|
753
718
|
createdBy: "system",
|
|
754
719
|
},
|
|
755
720
|
{
|
|
756
|
-
question: "
|
|
757
|
-
answer: "
|
|
758
|
-
category: "
|
|
721
|
+
question: "Does the seller ship to all pincodes?",
|
|
722
|
+
answer: "<p>Not necessarily. Each seller's courier partners may have limited pincode coverage, especially for remote areas. You can check delivery eligibility by entering your pincode on the product listing page before adding to cart.</p>",
|
|
723
|
+
category: "shipping_delivery",
|
|
759
724
|
showOnHomepage: false,
|
|
760
725
|
showInFooter: false,
|
|
761
726
|
isPinned: false,
|
|
762
|
-
order:
|
|
763
|
-
priority:
|
|
764
|
-
tags: ["
|
|
727
|
+
order: 10,
|
|
728
|
+
priority: 5,
|
|
729
|
+
tags: ["pincode", "delivery", "coverage", "remote"],
|
|
765
730
|
relatedFAQs: [],
|
|
766
731
|
useSiteSettings: false,
|
|
767
|
-
|
|
768
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
732
|
+
stats: { views: 350, helpful: 280, notHelpful: 20 },
|
|
769
733
|
seo: {
|
|
770
|
-
slug: "
|
|
771
|
-
metaTitle: "
|
|
772
|
-
metaDescription: "
|
|
734
|
+
slug: "seller-pincode-coverage",
|
|
735
|
+
metaTitle: "Does the Seller Ship to My Pincode? | LetItRip FAQ",
|
|
736
|
+
metaDescription: "Check your pincode on the product page for delivery eligibility. Coverage varies by seller and courier.",
|
|
773
737
|
},
|
|
774
738
|
isActive: true,
|
|
775
739
|
createdBy: "system",
|
|
776
740
|
},
|
|
741
|
+
// ============================================
|
|
742
|
+
// RETURNS & REFUNDS — 10 FAQs
|
|
743
|
+
// ============================================
|
|
777
744
|
{
|
|
778
|
-
question: "
|
|
779
|
-
answer: "
|
|
780
|
-
category: "
|
|
745
|
+
question: "What is LetItRip's return policy?",
|
|
746
|
+
answer: "<p>LetItRip does not have a single platform-wide return policy. <strong>Return and refund terms are set by each individual seller</strong>. Before purchasing, always review the seller's return policy listed on their store page or product description. Common seller policies range from no returns to 7-day returns for items not as described.</p>",
|
|
747
|
+
category: "returns_refunds",
|
|
781
748
|
showOnHomepage: false,
|
|
782
|
-
showInFooter:
|
|
783
|
-
isPinned:
|
|
784
|
-
order:
|
|
785
|
-
priority:
|
|
786
|
-
tags: ["
|
|
749
|
+
showInFooter: true,
|
|
750
|
+
isPinned: true,
|
|
751
|
+
order: 1,
|
|
752
|
+
priority: 10,
|
|
753
|
+
tags: ["return-policy", "refund", "seller-policy", "returns"],
|
|
787
754
|
relatedFAQs: [],
|
|
788
755
|
useSiteSettings: false,
|
|
789
|
-
|
|
790
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
756
|
+
stats: { views: 1320, helpful: 1100, notHelpful: 58 },
|
|
791
757
|
seo: {
|
|
792
|
-
slug: "
|
|
793
|
-
metaTitle: "
|
|
794
|
-
metaDescription: "
|
|
758
|
+
slug: "return-policy",
|
|
759
|
+
metaTitle: "What Is the Return Policy on LetItRip? | Refunds FAQ",
|
|
760
|
+
metaDescription: "Return policies on LetItRip are set by individual sellers, not the platform. Check each seller's store page for their policy.",
|
|
795
761
|
},
|
|
796
762
|
isActive: true,
|
|
797
763
|
createdBy: "system",
|
|
798
764
|
},
|
|
799
765
|
{
|
|
800
|
-
question: "
|
|
801
|
-
answer: "
|
|
802
|
-
category: "
|
|
766
|
+
question: "How do I initiate a return?",
|
|
767
|
+
answer: "<p>To initiate a return:</p><ol><li>Go to <strong>My Orders</strong> and open the relevant order</li><li>Click <strong>Request Return</strong> and describe the reason</li><li>The seller will review your request and respond within their stated timeline</li><li>If approved, you'll receive return shipping instructions from the seller</li></ol><p>Return eligibility, deadlines, and shipping costs are governed by the seller's policy.</p>",
|
|
768
|
+
category: "returns_refunds",
|
|
803
769
|
showOnHomepage: false,
|
|
804
770
|
showInFooter: false,
|
|
805
771
|
isPinned: false,
|
|
806
|
-
order:
|
|
807
|
-
priority:
|
|
808
|
-
tags: ["
|
|
772
|
+
order: 2,
|
|
773
|
+
priority: 8,
|
|
774
|
+
tags: ["return", "refund", "how-to", "my-orders"],
|
|
809
775
|
relatedFAQs: [],
|
|
810
776
|
useSiteSettings: false,
|
|
811
|
-
|
|
812
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
777
|
+
stats: { views: 820, helpful: 700, notHelpful: 38 },
|
|
813
778
|
seo: {
|
|
814
|
-
slug: "
|
|
815
|
-
metaTitle: "
|
|
816
|
-
metaDescription: "
|
|
779
|
+
slug: "how-to-initiate-return",
|
|
780
|
+
metaTitle: "How to Initiate a Return on LetItRip | Step-by-Step Guide",
|
|
781
|
+
metaDescription: "Initiate a return from My Orders. The seller reviews your request and provides return instructions.",
|
|
817
782
|
},
|
|
818
783
|
isActive: true,
|
|
819
784
|
createdBy: "system",
|
|
820
785
|
},
|
|
821
786
|
{
|
|
822
|
-
question: "
|
|
823
|
-
answer: "
|
|
824
|
-
category: "
|
|
787
|
+
question: "Is return shipping free?",
|
|
788
|
+
answer: "<p><strong>Return shipping costs depend on the seller's policy.</strong> Some sellers cover return shipping for items that are damaged or not as described; others require the buyer to bear return shipping costs. Check the seller's return policy on their store page before purchasing. LetItRip does not reimburse return shipping costs independently of the seller's decision.</p>",
|
|
789
|
+
category: "returns_refunds",
|
|
825
790
|
showOnHomepage: false,
|
|
826
|
-
showInFooter:
|
|
791
|
+
showInFooter: true,
|
|
827
792
|
isPinned: false,
|
|
828
|
-
order:
|
|
829
|
-
priority:
|
|
830
|
-
tags: ["
|
|
793
|
+
order: 3,
|
|
794
|
+
priority: 9,
|
|
795
|
+
tags: ["return-shipping", "free-returns", "seller-policy", "shipping-cost"],
|
|
831
796
|
relatedFAQs: [],
|
|
832
797
|
useSiteSettings: false,
|
|
833
|
-
|
|
834
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
798
|
+
stats: { views: 980, helpful: 820, notHelpful: 50 },
|
|
835
799
|
seo: {
|
|
836
|
-
slug: "
|
|
837
|
-
metaTitle: "
|
|
838
|
-
metaDescription: "
|
|
800
|
+
slug: "is-return-shipping-free",
|
|
801
|
+
metaTitle: "Is Return Shipping Free on LetItRip? | Returns FAQ",
|
|
802
|
+
metaDescription: "Return shipping costs are set by each seller. Check the seller's policy before purchasing.",
|
|
839
803
|
},
|
|
840
804
|
isActive: true,
|
|
841
805
|
createdBy: "system",
|
|
842
806
|
},
|
|
843
|
-
// ============================================
|
|
844
|
-
// RETURNS (12 FAQs)
|
|
845
|
-
// ============================================
|
|
846
807
|
{
|
|
847
|
-
question: "What
|
|
848
|
-
answer: "
|
|
849
|
-
category: "
|
|
850
|
-
showOnHomepage:
|
|
808
|
+
question: "What if I receive the wrong item?",
|
|
809
|
+
answer: "<p>If you receive an item different from what you ordered:</p><ol><li>Photograph the received item next to its packaging</li><li>Contact the seller immediately via your order page with photos</li><li>The seller is responsible for sending the correct item or issuing a full refund, including any return shipping costs</li><li>If the seller doesn't resolve it within <strong>72 hours</strong>, escalate to LetItRip support</li></ol>",
|
|
810
|
+
category: "returns_refunds",
|
|
811
|
+
showOnHomepage: false,
|
|
851
812
|
showInFooter: false,
|
|
852
813
|
isPinned: false,
|
|
853
|
-
order:
|
|
814
|
+
order: 4,
|
|
854
815
|
priority: 9,
|
|
855
|
-
tags: ["
|
|
816
|
+
tags: ["wrong-item", "incorrect", "return", "refund"],
|
|
856
817
|
relatedFAQs: [],
|
|
857
818
|
useSiteSettings: false,
|
|
858
|
-
|
|
859
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
819
|
+
stats: { views: 690, helpful: 600, notHelpful: 28 },
|
|
860
820
|
seo: {
|
|
861
|
-
slug: "
|
|
862
|
-
metaTitle: "
|
|
863
|
-
metaDescription: "
|
|
821
|
+
slug: "received-wrong-item",
|
|
822
|
+
metaTitle: "What If I Received the Wrong Item? | LetItRip FAQ",
|
|
823
|
+
metaDescription: "Contact the seller with photos if you receive the wrong Pokemon card. Escalate to LetItRip support if unresolved.",
|
|
864
824
|
},
|
|
865
825
|
isActive: true,
|
|
866
826
|
createdBy: "system",
|
|
867
827
|
},
|
|
868
828
|
{
|
|
869
|
-
question: "How
|
|
870
|
-
answer:
|
|
871
|
-
category: "
|
|
829
|
+
question: "How long does a refund take?",
|
|
830
|
+
answer: "<p>Once the seller approves your refund, processing times are:</p><ul><li><strong>UPI / Wallets:</strong> 1–3 business days</li><li><strong>Debit/Credit Cards:</strong> 5–7 business days</li><li><strong>Net Banking:</strong> 3–5 business days</li></ul><p>The refund timeline starts after the seller confirms the return, not from the date you raise the request.</p>",
|
|
831
|
+
category: "returns_refunds",
|
|
872
832
|
showOnHomepage: false,
|
|
873
833
|
showInFooter: false,
|
|
874
834
|
isPinned: false,
|
|
875
|
-
order:
|
|
835
|
+
order: 5,
|
|
876
836
|
priority: 8,
|
|
877
|
-
tags: ["
|
|
837
|
+
tags: ["refund", "refund-time", "processing", "upi", "bank"],
|
|
878
838
|
relatedFAQs: [],
|
|
879
839
|
useSiteSettings: false,
|
|
880
|
-
|
|
881
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
840
|
+
stats: { views: 870, helpful: 750, notHelpful: 32 },
|
|
882
841
|
seo: {
|
|
883
|
-
slug: "
|
|
884
|
-
metaTitle: "How
|
|
885
|
-
metaDescription: "
|
|
842
|
+
slug: "how-long-does-refund-take",
|
|
843
|
+
metaTitle: "How Long Does a Refund Take? | LetItRip Refund Timeline",
|
|
844
|
+
metaDescription: "Refunds on LetItRip take 1–7 business days depending on payment method, starting after seller approval.",
|
|
886
845
|
},
|
|
887
846
|
isActive: true,
|
|
888
847
|
createdBy: "system",
|
|
889
848
|
},
|
|
890
849
|
{
|
|
891
|
-
question: "
|
|
892
|
-
answer: "
|
|
893
|
-
category: "
|
|
850
|
+
question: "Can I return a graded (PSA/BGS) card?",
|
|
851
|
+
answer: "<p>Returns for graded cards are subject to each seller's policy. Most sellers of graded cards accept returns only if the card is <strong>not as described</strong> (e.g., wrong grade, wrong card, damaged slab). Returns for change-of-mind on graded cards are typically not accepted. Always confirm with the seller before purchasing high-value slabs.</p>",
|
|
852
|
+
category: "returns_refunds",
|
|
894
853
|
showOnHomepage: false,
|
|
895
854
|
showInFooter: false,
|
|
896
855
|
isPinned: false,
|
|
897
|
-
order:
|
|
856
|
+
order: 6,
|
|
898
857
|
priority: 8,
|
|
899
|
-
tags: ["
|
|
858
|
+
tags: ["graded", "psa", "bgs", "slab", "return", "refund"],
|
|
900
859
|
relatedFAQs: [],
|
|
901
860
|
useSiteSettings: false,
|
|
902
|
-
|
|
903
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
861
|
+
stats: { views: 560, helpful: 490, notHelpful: 28 },
|
|
904
862
|
seo: {
|
|
905
|
-
slug: "return-
|
|
906
|
-
metaTitle: "Return
|
|
907
|
-
metaDescription: "
|
|
863
|
+
slug: "return-graded-psa-bgs-card",
|
|
864
|
+
metaTitle: "Can I Return a PSA or BGS Graded Card? | LetItRip FAQ",
|
|
865
|
+
metaDescription: "Returns for graded cards depend on each seller's policy. Most accept returns only for items not as described.",
|
|
908
866
|
},
|
|
909
867
|
isActive: true,
|
|
910
868
|
createdBy: "system",
|
|
911
869
|
},
|
|
912
870
|
{
|
|
913
|
-
question: "
|
|
914
|
-
answer: "
|
|
915
|
-
category: "
|
|
871
|
+
question: "Can I return a sealed booster pack or box?",
|
|
872
|
+
answer: "<p>Sealed products are generally non-returnable once the seal has been broken. If the product was damaged in transit or received in an unsealed condition, contact the seller with photographic evidence immediately. The seller's policy governs whether a return or replacement is offered.</p>",
|
|
873
|
+
category: "returns_refunds",
|
|
916
874
|
showOnHomepage: false,
|
|
917
875
|
showInFooter: false,
|
|
918
876
|
isPinned: false,
|
|
919
|
-
order:
|
|
877
|
+
order: 7,
|
|
920
878
|
priority: 7,
|
|
921
|
-
tags: ["
|
|
879
|
+
tags: ["sealed", "booster-pack", "booster-box", "return"],
|
|
922
880
|
relatedFAQs: [],
|
|
923
881
|
useSiteSettings: false,
|
|
924
|
-
|
|
925
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
882
|
+
stats: { views: 490, helpful: 420, notHelpful: 22 },
|
|
926
883
|
seo: {
|
|
927
|
-
slug: "
|
|
928
|
-
metaTitle: "
|
|
929
|
-
metaDescription: "
|
|
884
|
+
slug: "return-sealed-booster-pack",
|
|
885
|
+
metaTitle: "Can I Return a Sealed Booster Pack or Box? | LetItRip FAQ",
|
|
886
|
+
metaDescription: "Sealed products are non-returnable once opened. Damaged or unsealed deliveries follow the seller's return policy.",
|
|
930
887
|
},
|
|
931
888
|
isActive: true,
|
|
932
889
|
createdBy: "system",
|
|
933
890
|
},
|
|
934
891
|
{
|
|
935
|
-
question: "Can I
|
|
936
|
-
answer:
|
|
937
|
-
category: "
|
|
892
|
+
question: "Can I get a refund on an auction purchase?",
|
|
893
|
+
answer: "<p>Auction purchases are generally <strong>final and non-refundable</strong> unless the item received is significantly not as described (wrong card, wrong grade, damaged in transit). Buyers are encouraged to ask the seller all questions before bidding. Refunds for auction wins are handled case-by-case by the seller, and LetItRip support can mediate if needed.</p>",
|
|
894
|
+
category: "returns_refunds",
|
|
938
895
|
showOnHomepage: false,
|
|
939
896
|
showInFooter: false,
|
|
940
897
|
isPinned: false,
|
|
941
|
-
order:
|
|
942
|
-
priority:
|
|
943
|
-
tags: ["
|
|
898
|
+
order: 8,
|
|
899
|
+
priority: 8,
|
|
900
|
+
tags: ["auction", "refund", "return", "non-refundable"],
|
|
944
901
|
relatedFAQs: [],
|
|
945
902
|
useSiteSettings: false,
|
|
946
|
-
|
|
947
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
903
|
+
stats: { views: 540, helpful: 460, notHelpful: 35 },
|
|
948
904
|
seo: {
|
|
949
|
-
slug: "
|
|
950
|
-
metaTitle: "
|
|
951
|
-
metaDescription: "
|
|
905
|
+
slug: "refund-auction-purchase",
|
|
906
|
+
metaTitle: "Can I Get a Refund on an Auction Purchase? | LetItRip FAQ",
|
|
907
|
+
metaDescription: "Auction purchases are final unless the item is significantly not as described. Contact the seller or LetItRip support.",
|
|
952
908
|
},
|
|
953
909
|
isActive: true,
|
|
954
910
|
createdBy: "system",
|
|
955
911
|
},
|
|
956
912
|
{
|
|
957
|
-
question: "What
|
|
958
|
-
answer:
|
|
959
|
-
category: "
|
|
913
|
+
question: "What if the seller refuses my return request?",
|
|
914
|
+
answer: "<p>If a seller refuses a return request you believe is valid (e.g., item not as described, damaged in transit):</p><ol><li>Document everything — photos, order details, and your communication with the seller</li><li>Contact LetItRip support at <strong>{{supportEmail}}</strong> with your order ID</li><li>Our team will mediate and can take action against sellers who violate platform policies</li></ol>",
|
|
915
|
+
category: "returns_refunds",
|
|
960
916
|
showOnHomepage: false,
|
|
961
917
|
showInFooter: false,
|
|
962
918
|
isPinned: false,
|
|
963
|
-
order:
|
|
964
|
-
priority:
|
|
965
|
-
tags: ["
|
|
919
|
+
order: 9,
|
|
920
|
+
priority: 9,
|
|
921
|
+
tags: ["return-refused", "dispute", "seller", "mediation", "support"],
|
|
966
922
|
relatedFAQs: [],
|
|
967
|
-
useSiteSettings:
|
|
968
|
-
|
|
969
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
923
|
+
useSiteSettings: true,
|
|
924
|
+
stats: { views: 620, helpful: 560, notHelpful: 28 },
|
|
970
925
|
seo: {
|
|
971
|
-
slug: "
|
|
972
|
-
metaTitle: "
|
|
973
|
-
metaDescription: "
|
|
926
|
+
slug: "seller-refused-return-request",
|
|
927
|
+
metaTitle: "What If the Seller Refuses My Return? | LetItRip Dispute",
|
|
928
|
+
metaDescription: "If a seller refuses a valid return, contact LetItRip support. We mediate and enforce platform policies.",
|
|
974
929
|
},
|
|
975
930
|
isActive: true,
|
|
976
931
|
createdBy: "system",
|
|
977
932
|
},
|
|
978
933
|
{
|
|
979
|
-
question: "
|
|
980
|
-
answer: "
|
|
981
|
-
category: "
|
|
934
|
+
question: "How do I report a counterfeit or fake card?",
|
|
935
|
+
answer: "<p>If you receive a card you believe to be counterfeit:</p><ol><li>Do <strong>not</strong> return it yet — preserve it as evidence</li><li>Take clear photos (front, back, side profile) under good lighting</li><li>Contact LetItRip support at <strong>{{supportEmail}}</strong> with your order ID and photos</li></ol><p>Selling counterfeit cards is a serious violation and results in immediate seller suspension and legal referral where applicable.</p>",
|
|
936
|
+
category: "returns_refunds",
|
|
982
937
|
showOnHomepage: false,
|
|
983
938
|
showInFooter: false,
|
|
984
939
|
isPinned: false,
|
|
985
|
-
order:
|
|
986
|
-
priority:
|
|
987
|
-
tags: ["
|
|
940
|
+
order: 10,
|
|
941
|
+
priority: 10,
|
|
942
|
+
tags: ["fake", "counterfeit", "proxy", "fraud", "authenticity"],
|
|
988
943
|
relatedFAQs: [],
|
|
989
|
-
useSiteSettings:
|
|
990
|
-
|
|
991
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
944
|
+
useSiteSettings: true,
|
|
945
|
+
stats: { views: 740, helpful: 680, notHelpful: 22 },
|
|
992
946
|
seo: {
|
|
993
|
-
slug: "
|
|
994
|
-
metaTitle: "
|
|
995
|
-
metaDescription: "
|
|
947
|
+
slug: "report-counterfeit-fake-card",
|
|
948
|
+
metaTitle: "How to Report a Counterfeit Pokemon Card | LetItRip",
|
|
949
|
+
metaDescription: "Received a fake Pokemon card? Contact LetItRip support with photos. Sellers of counterfeits are immediately suspended.",
|
|
996
950
|
},
|
|
997
951
|
isActive: true,
|
|
998
952
|
createdBy: "system",
|
|
999
953
|
},
|
|
954
|
+
// ============================================
|
|
955
|
+
// PRODUCT INFORMATION — 10 FAQs
|
|
956
|
+
// ============================================
|
|
1000
957
|
{
|
|
1001
|
-
question: "
|
|
1002
|
-
answer: "
|
|
1003
|
-
category: "
|
|
958
|
+
question: "Are all Pokemon cards on LetItRip authentic?",
|
|
959
|
+
answer: "<p>Authenticity is our top priority. All sellers are vetted before listing, and listings are subject to ongoing review. However, as a marketplace, LetItRip relies on sellers to accurately represent their products. We <strong>strongly recommend</strong> purchasing graded cards from sellers with verified badges and reviewing store ratings before buying raw cards. Report any suspected fakes immediately.</p>",
|
|
960
|
+
category: "product_information",
|
|
1004
961
|
showOnHomepage: false,
|
|
1005
962
|
showInFooter: false,
|
|
1006
|
-
isPinned:
|
|
1007
|
-
order:
|
|
1008
|
-
priority:
|
|
1009
|
-
tags: ["
|
|
963
|
+
isPinned: true,
|
|
964
|
+
order: 1,
|
|
965
|
+
priority: 10,
|
|
966
|
+
tags: ["authentic", "genuine", "fake", "counterfeit", "pokemon", "tcg"],
|
|
1010
967
|
relatedFAQs: [],
|
|
1011
|
-
useSiteSettings:
|
|
1012
|
-
|
|
1013
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
968
|
+
useSiteSettings: false,
|
|
969
|
+
stats: { views: 1050, helpful: 920, notHelpful: 38 },
|
|
1014
970
|
seo: {
|
|
1015
|
-
slug: "
|
|
1016
|
-
metaTitle: "
|
|
1017
|
-
metaDescription: "
|
|
971
|
+
slug: "are-cards-authentic",
|
|
972
|
+
metaTitle: "Are Pokemon Cards on LetItRip Authentic? | FAQ",
|
|
973
|
+
metaDescription: "LetItRip vets all sellers for authenticity. Buy graded cards from verified sellers for maximum confidence.",
|
|
1018
974
|
},
|
|
1019
975
|
isActive: true,
|
|
1020
976
|
createdBy: "system",
|
|
1021
977
|
},
|
|
1022
978
|
{
|
|
1023
|
-
question: "
|
|
1024
|
-
answer: "
|
|
1025
|
-
category: "
|
|
979
|
+
question: "What does '1st Edition' mean for Pokemon cards?",
|
|
980
|
+
answer: "<p>First Edition cards were printed in the very first production run of a Pokemon TCG set. They are identified by a <strong>small '1st Edition' stamp</strong> on the left side of the card art. First Edition Base Set cards (1999) are among the most valuable in the hobby. Non-1st Edition prints from the same set are called <strong>Unlimited</strong> and are more common.</p>",
|
|
981
|
+
category: "product_information",
|
|
1026
982
|
showOnHomepage: false,
|
|
1027
983
|
showInFooter: false,
|
|
1028
984
|
isPinned: false,
|
|
1029
|
-
order:
|
|
1030
|
-
priority:
|
|
1031
|
-
tags: ["
|
|
985
|
+
order: 2,
|
|
986
|
+
priority: 8,
|
|
987
|
+
tags: ["1st-edition", "first-edition", "base-set", "stamp", "value"],
|
|
1032
988
|
relatedFAQs: [],
|
|
1033
989
|
useSiteSettings: false,
|
|
1034
|
-
|
|
1035
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
990
|
+
stats: { views: 870, helpful: 750, notHelpful: 22 },
|
|
1036
991
|
seo: {
|
|
1037
|
-
slug: "
|
|
1038
|
-
metaTitle: "
|
|
1039
|
-
metaDescription: "
|
|
992
|
+
slug: "what-is-1st-edition-pokemon-card",
|
|
993
|
+
metaTitle: "What Does '1st Edition' Mean for Pokemon Cards? | LetItRip",
|
|
994
|
+
metaDescription: "1st Edition Pokemon cards were printed in the first production run of a set and carry a special stamp on the card art.",
|
|
1040
995
|
},
|
|
1041
996
|
isActive: true,
|
|
1042
997
|
createdBy: "system",
|
|
1043
998
|
},
|
|
1044
999
|
{
|
|
1045
|
-
question: "
|
|
1046
|
-
answer:
|
|
1047
|
-
category: "
|
|
1000
|
+
question: "What is PSA / BGS / CGC grading?",
|
|
1001
|
+
answer: "<p>Professional grading companies evaluate the condition of a card and assign a numeric grade (1–10), then seal it in a tamper-evident protective case called a <strong>slab</strong>:</p><ul><li><strong>PSA</strong> (Professional Sports Authenticator) — industry standard; PSA 10 is near-perfect</li><li><strong>BGS</strong> (Beckett Grading Services) — uses subgrades for centering, corners, edges, surface; BGS 10 is called Pristine</li><li><strong>CGC</strong> — newer, growing in popularity</li></ul><p>Graded cards command premiums over raw cards because of guaranteed authenticity and condition.</p>",
|
|
1002
|
+
category: "product_information",
|
|
1048
1003
|
showOnHomepage: false,
|
|
1049
1004
|
showInFooter: false,
|
|
1050
1005
|
isPinned: false,
|
|
1051
|
-
order:
|
|
1052
|
-
priority:
|
|
1053
|
-
tags: ["
|
|
1006
|
+
order: 3,
|
|
1007
|
+
priority: 9,
|
|
1008
|
+
tags: ["psa", "bgs", "cgc", "grading", "slab", "grade"],
|
|
1054
1009
|
relatedFAQs: [],
|
|
1055
1010
|
useSiteSettings: false,
|
|
1056
|
-
|
|
1057
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1011
|
+
stats: { views: 1100, helpful: 980, notHelpful: 30 },
|
|
1058
1012
|
seo: {
|
|
1059
|
-
slug: "
|
|
1060
|
-
metaTitle: "
|
|
1061
|
-
metaDescription: "
|
|
1013
|
+
slug: "what-is-psa-bgs-cgc-grading",
|
|
1014
|
+
metaTitle: "What Is PSA, BGS, CGC Grading? | Pokemon Card Grades Explained",
|
|
1015
|
+
metaDescription: "PSA, BGS, and CGC are professional grading companies that authenticate Pokemon cards and assign condition grades 1–10.",
|
|
1062
1016
|
},
|
|
1063
1017
|
isActive: true,
|
|
1064
1018
|
createdBy: "system",
|
|
1065
1019
|
},
|
|
1066
1020
|
{
|
|
1067
|
-
question: "What
|
|
1068
|
-
answer: "
|
|
1069
|
-
category: "
|
|
1021
|
+
question: "What card conditions are used on LetItRip?",
|
|
1022
|
+
answer: "<p>Sellers on LetItRip use standard Pokemon TCG card condition grades:</p><ul><li><strong>Mint (M)</strong> — Near perfect, virtually unplayed</li><li><strong>Near Mint (NM)</strong> — Minimal wear, sharp corners</li><li><strong>Lightly Played (LP)</strong> — Minor edge wear or scratches</li><li><strong>Moderately Played (MP)</strong> — Visible wear on corners, edges, or face</li><li><strong>Heavily Played (HP)</strong> — Significant wear, still identifiable</li><li><strong>Damaged (D)</strong> — Major physical damage</li></ul><p>Always check the seller's photos and description. For high-value purchases, ask for additional photos.</p>",
|
|
1023
|
+
category: "product_information",
|
|
1070
1024
|
showOnHomepage: false,
|
|
1071
1025
|
showInFooter: false,
|
|
1072
1026
|
isPinned: false,
|
|
1073
|
-
order:
|
|
1074
|
-
priority:
|
|
1075
|
-
tags: ["
|
|
1027
|
+
order: 4,
|
|
1028
|
+
priority: 9,
|
|
1029
|
+
tags: ["condition", "mint", "near-mint", "played", "grading", "wear"],
|
|
1076
1030
|
relatedFAQs: [],
|
|
1077
1031
|
useSiteSettings: false,
|
|
1078
|
-
|
|
1079
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1032
|
+
stats: { views: 780, helpful: 680, notHelpful: 28 },
|
|
1080
1033
|
seo: {
|
|
1081
|
-
slug: "
|
|
1082
|
-
metaTitle: "
|
|
1083
|
-
metaDescription: "
|
|
1034
|
+
slug: "pokemon-card-conditions",
|
|
1035
|
+
metaTitle: "Pokemon Card Conditions Explained | LetItRip FAQ",
|
|
1036
|
+
metaDescription: "Understand Mint, Near Mint, Lightly Played, Moderately Played, Heavily Played card conditions used on LetItRip.",
|
|
1084
1037
|
},
|
|
1085
1038
|
isActive: true,
|
|
1086
1039
|
createdBy: "system",
|
|
1087
1040
|
},
|
|
1088
1041
|
{
|
|
1089
|
-
question: "
|
|
1090
|
-
answer:
|
|
1091
|
-
category: "
|
|
1042
|
+
question: "What is a 'holo rare' card?",
|
|
1043
|
+
answer: "<p>A <strong>holo rare</strong> is a card with a holographic foil pattern on the card illustration (the picture area). Holo rares are denoted by a star symbol (★) in their rarity. In the Base Set, cards like Charizard, Blastoise, and Mewtwo are holo rares. They are generally more valuable than common or uncommon cards from the same set.</p>",
|
|
1044
|
+
category: "product_information",
|
|
1092
1045
|
showOnHomepage: false,
|
|
1093
1046
|
showInFooter: false,
|
|
1094
1047
|
isPinned: false,
|
|
1095
|
-
order:
|
|
1096
|
-
priority:
|
|
1097
|
-
tags: ["
|
|
1048
|
+
order: 5,
|
|
1049
|
+
priority: 7,
|
|
1050
|
+
tags: ["holo", "holo-rare", "foil", "rarity", "charizard", "base-set"],
|
|
1098
1051
|
relatedFAQs: [],
|
|
1099
1052
|
useSiteSettings: false,
|
|
1100
|
-
|
|
1101
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1053
|
+
stats: { views: 680, helpful: 590, notHelpful: 20 },
|
|
1102
1054
|
seo: {
|
|
1103
|
-
slug: "
|
|
1104
|
-
metaTitle: "
|
|
1105
|
-
metaDescription: "
|
|
1055
|
+
slug: "what-is-holo-rare-card",
|
|
1056
|
+
metaTitle: "What Is a Holo Rare Pokemon Card? | LetItRip FAQ",
|
|
1057
|
+
metaDescription: "Holo rare Pokemon cards have a holographic foil on the illustration. They are rarer and more valuable than common cards.",
|
|
1106
1058
|
},
|
|
1107
1059
|
isActive: true,
|
|
1108
1060
|
createdBy: "system",
|
|
1109
1061
|
},
|
|
1110
|
-
// ============================================
|
|
1111
|
-
// PAYMENT (18 FAQs)
|
|
1112
|
-
// ============================================
|
|
1113
1062
|
{
|
|
1114
|
-
question: "What
|
|
1115
|
-
answer: "
|
|
1116
|
-
category: "
|
|
1117
|
-
showOnHomepage:
|
|
1063
|
+
question: "What does 'raw' card mean?",
|
|
1064
|
+
answer: "<p>A <strong>raw card</strong> is an ungraded card — one that hasn't been submitted to a professional grading company (PSA, BGS, CGC). Raw cards are not in a protective slab and their condition is assessed visually. Raw cards in high grades (NM or better) are often submitted for grading by buyers.</p>",
|
|
1065
|
+
category: "product_information",
|
|
1066
|
+
showOnHomepage: false,
|
|
1118
1067
|
showInFooter: false,
|
|
1119
1068
|
isPinned: false,
|
|
1120
|
-
order:
|
|
1121
|
-
priority:
|
|
1122
|
-
tags: ["
|
|
1069
|
+
order: 6,
|
|
1070
|
+
priority: 6,
|
|
1071
|
+
tags: ["raw", "ungraded", "condition", "grading"],
|
|
1123
1072
|
relatedFAQs: [],
|
|
1124
1073
|
useSiteSettings: false,
|
|
1125
|
-
|
|
1126
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1074
|
+
stats: { views: 550, helpful: 480, notHelpful: 18 },
|
|
1127
1075
|
seo: {
|
|
1128
|
-
slug: "
|
|
1129
|
-
metaTitle: "
|
|
1130
|
-
metaDescription: "
|
|
1076
|
+
slug: "what-does-raw-card-mean",
|
|
1077
|
+
metaTitle: "What Does 'Raw Card' Mean in Pokemon TCG? | LetItRip FAQ",
|
|
1078
|
+
metaDescription: "A 'raw' Pokemon card is ungraded and not in a protective slab. Condition is assessed visually by the seller.",
|
|
1131
1079
|
},
|
|
1132
1080
|
isActive: true,
|
|
1133
1081
|
createdBy: "system",
|
|
1134
1082
|
},
|
|
1135
1083
|
{
|
|
1136
|
-
question: "
|
|
1137
|
-
answer: "Yes,
|
|
1138
|
-
category: "
|
|
1084
|
+
question: "Can I ask a seller questions before buying?",
|
|
1085
|
+
answer: "<p>Yes! On any product listing, you can message the seller directly using the <strong>Ask Seller</strong> button. You can request additional photos, clarify the card's condition, or ask about packaging. We recommend doing this for any card valued above ₹1,000.</p>",
|
|
1086
|
+
category: "product_information",
|
|
1139
1087
|
showOnHomepage: false,
|
|
1140
1088
|
showInFooter: false,
|
|
1141
1089
|
isPinned: false,
|
|
1142
|
-
order:
|
|
1143
|
-
priority:
|
|
1144
|
-
tags: ["
|
|
1090
|
+
order: 7,
|
|
1091
|
+
priority: 7,
|
|
1092
|
+
tags: ["ask-seller", "question", "contact", "listing"],
|
|
1145
1093
|
relatedFAQs: [],
|
|
1146
1094
|
useSiteSettings: false,
|
|
1147
|
-
|
|
1148
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1095
|
+
stats: { views: 460, helpful: 400, notHelpful: 18 },
|
|
1149
1096
|
seo: {
|
|
1150
|
-
slug: "
|
|
1151
|
-
metaTitle: "
|
|
1152
|
-
metaDescription: "
|
|
1097
|
+
slug: "ask-seller-questions",
|
|
1098
|
+
metaTitle: "Can I Ask a Seller Questions Before Buying? | LetItRip FAQ",
|
|
1099
|
+
metaDescription: "Use the Ask Seller button on any product page to get clarifications, photos, or condition details before purchasing.",
|
|
1153
1100
|
},
|
|
1154
1101
|
isActive: true,
|
|
1155
1102
|
createdBy: "system",
|
|
1156
1103
|
},
|
|
1157
1104
|
{
|
|
1158
|
-
question: "
|
|
1159
|
-
answer: "
|
|
1160
|
-
category: "
|
|
1105
|
+
question: "How do I know if the price is fair for a Pokemon card?",
|
|
1106
|
+
answer: "<p>A few ways to gauge fair pricing:</p><ul><li>Compare with other listings of the same card on LetItRip</li><li>Check recent sold prices on international platforms like TCGPlayer or eBay for reference (converted to INR)</li><li>For graded cards, PSA Population Reports show how many of a grade exist — rarer grades command higher prices</li><li>Condition matters a lot — an NM Charizard is worth significantly more than an LP one</li></ul>",
|
|
1107
|
+
category: "product_information",
|
|
1161
1108
|
showOnHomepage: false,
|
|
1162
1109
|
showInFooter: false,
|
|
1163
1110
|
isPinned: false,
|
|
1164
|
-
order:
|
|
1165
|
-
priority:
|
|
1166
|
-
tags: ["
|
|
1111
|
+
order: 8,
|
|
1112
|
+
priority: 6,
|
|
1113
|
+
tags: ["price", "fair-value", "tcgplayer", "ebay", "market-value"],
|
|
1167
1114
|
relatedFAQs: [],
|
|
1168
1115
|
useSiteSettings: false,
|
|
1169
|
-
|
|
1170
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1116
|
+
stats: { views: 640, helpful: 560, notHelpful: 28 },
|
|
1171
1117
|
seo: {
|
|
1172
|
-
slug: "
|
|
1173
|
-
metaTitle: "
|
|
1174
|
-
metaDescription: "
|
|
1118
|
+
slug: "how-to-know-fair-price",
|
|
1119
|
+
metaTitle: "How to Know If a Pokemon Card Price Is Fair | LetItRip FAQ",
|
|
1120
|
+
metaDescription: "Compare listings on LetItRip, check international sold prices on TCGPlayer/eBay, and consider card condition and grade rarity.",
|
|
1175
1121
|
},
|
|
1176
1122
|
isActive: true,
|
|
1177
1123
|
createdBy: "system",
|
|
1178
1124
|
},
|
|
1179
1125
|
{
|
|
1180
|
-
question: "
|
|
1181
|
-
answer: "
|
|
1182
|
-
category: "
|
|
1126
|
+
question: "Are product photos on listings accurate?",
|
|
1127
|
+
answer: "<p>Sellers are required to upload <strong>actual photos of the specific card being sold</strong> (not stock images) for all singles and graded cards. If you're buying a specific item, look for listings with multiple angles showing corners, edges, and surface. If a listing uses a stock image, contact the seller for actual photos before purchasing.</p>",
|
|
1128
|
+
category: "product_information",
|
|
1183
1129
|
showOnHomepage: false,
|
|
1184
1130
|
showInFooter: false,
|
|
1185
1131
|
isPinned: false,
|
|
1186
|
-
order:
|
|
1132
|
+
order: 9,
|
|
1187
1133
|
priority: 7,
|
|
1188
|
-
tags: ["
|
|
1134
|
+
tags: ["photos", "listing-photos", "stock-image", "condition"],
|
|
1189
1135
|
relatedFAQs: [],
|
|
1190
1136
|
useSiteSettings: false,
|
|
1191
|
-
|
|
1192
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1137
|
+
stats: { views: 420, helpful: 360, notHelpful: 22 },
|
|
1193
1138
|
seo: {
|
|
1194
|
-
slug: "
|
|
1195
|
-
metaTitle: "
|
|
1196
|
-
metaDescription: "
|
|
1139
|
+
slug: "are-listing-photos-accurate",
|
|
1140
|
+
metaTitle: "Are Product Photos on LetItRip Accurate? | FAQ",
|
|
1141
|
+
metaDescription: "Sellers must upload actual photos of the card being sold. Ask the seller for more photos if stock images are used.",
|
|
1197
1142
|
},
|
|
1198
1143
|
isActive: true,
|
|
1199
1144
|
createdBy: "system",
|
|
1200
1145
|
},
|
|
1201
1146
|
{
|
|
1202
|
-
question: "
|
|
1203
|
-
answer: "
|
|
1204
|
-
category: "
|
|
1147
|
+
question: "What is an Elite Trainer Box (ETB)?",
|
|
1148
|
+
answer: "<p>An <strong>Elite Trainer Box (ETB)</strong> is an official Pokemon TCG product that includes booster packs, energy cards, card sleeves, dice, and a collector's box. ETBs are sealed products from The Pokemon Company and are popular with collectors and players. Prices vary by set — older or discontinued ETBs can command high premiums.</p>",
|
|
1149
|
+
category: "product_information",
|
|
1205
1150
|
showOnHomepage: false,
|
|
1206
1151
|
showInFooter: false,
|
|
1207
1152
|
isPinned: false,
|
|
1208
|
-
order:
|
|
1153
|
+
order: 10,
|
|
1209
1154
|
priority: 5,
|
|
1210
|
-
tags: ["
|
|
1155
|
+
tags: ["etb", "elite-trainer-box", "sealed", "booster", "pokemon"],
|
|
1211
1156
|
relatedFAQs: [],
|
|
1212
1157
|
useSiteSettings: false,
|
|
1213
|
-
|
|
1214
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1158
|
+
stats: { views: 490, helpful: 430, notHelpful: 16 },
|
|
1215
1159
|
seo: {
|
|
1216
|
-
slug: "
|
|
1217
|
-
metaTitle: "
|
|
1218
|
-
metaDescription: "
|
|
1160
|
+
slug: "what-is-elite-trainer-box-etb",
|
|
1161
|
+
metaTitle: "What Is an Elite Trainer Box (ETB)? | LetItRip FAQ",
|
|
1162
|
+
metaDescription: "An ETB is an official sealed Pokemon TCG product with booster packs, sleeves, and accessories. Popular with collectors.",
|
|
1219
1163
|
},
|
|
1220
1164
|
isActive: true,
|
|
1221
1165
|
createdBy: "system",
|
|
1222
1166
|
},
|
|
1167
|
+
// ============================================
|
|
1168
|
+
// ACCOUNT & SECURITY — 8 FAQs
|
|
1169
|
+
// ============================================
|
|
1223
1170
|
{
|
|
1224
|
-
question: "
|
|
1225
|
-
answer: "
|
|
1226
|
-
category: "
|
|
1171
|
+
question: "How do I create a LetItRip account?",
|
|
1172
|
+
answer: "<p>Click <strong>Sign Up</strong> at the top right of any page. Enter your email address and create a password, or sign up with Google. Verify your email to activate your account. You can start browsing and purchasing immediately after verification.</p>",
|
|
1173
|
+
category: "account_security",
|
|
1227
1174
|
showOnHomepage: false,
|
|
1228
1175
|
showInFooter: false,
|
|
1229
1176
|
isPinned: false,
|
|
1230
|
-
order:
|
|
1231
|
-
priority:
|
|
1232
|
-
tags: ["
|
|
1177
|
+
order: 1,
|
|
1178
|
+
priority: 8,
|
|
1179
|
+
tags: ["sign-up", "register", "account", "email", "google"],
|
|
1233
1180
|
relatedFAQs: [],
|
|
1234
1181
|
useSiteSettings: false,
|
|
1235
|
-
|
|
1236
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1182
|
+
stats: { views: 620, helpful: 530, notHelpful: 22 },
|
|
1237
1183
|
seo: {
|
|
1238
|
-
slug: "
|
|
1239
|
-
metaTitle: "
|
|
1240
|
-
metaDescription: "
|
|
1184
|
+
slug: "how-to-create-account",
|
|
1185
|
+
metaTitle: "How to Create a LetItRip Account | Sign Up Guide",
|
|
1186
|
+
metaDescription: "Create your LetItRip account with email or Google. Verify your email to start buying Pokemon TCG cards.",
|
|
1241
1187
|
},
|
|
1242
1188
|
isActive: true,
|
|
1243
1189
|
createdBy: "system",
|
|
1244
1190
|
},
|
|
1245
1191
|
{
|
|
1246
|
-
question: "
|
|
1247
|
-
answer:
|
|
1248
|
-
category: "
|
|
1192
|
+
question: "How do I reset my password?",
|
|
1193
|
+
answer: "<p>On the login page, click <strong>Forgot Password</strong> and enter your registered email. You'll receive a password reset link within a few minutes. Check your spam folder if you don't see it. The reset link expires in <strong>30 minutes</strong>.</p>",
|
|
1194
|
+
category: "account_security",
|
|
1249
1195
|
showOnHomepage: false,
|
|
1250
1196
|
showInFooter: false,
|
|
1251
1197
|
isPinned: false,
|
|
1252
|
-
order:
|
|
1253
|
-
priority:
|
|
1254
|
-
tags: ["
|
|
1198
|
+
order: 2,
|
|
1199
|
+
priority: 7,
|
|
1200
|
+
tags: ["password", "reset", "forgot-password", "login"],
|
|
1255
1201
|
relatedFAQs: [],
|
|
1256
1202
|
useSiteSettings: false,
|
|
1257
|
-
|
|
1258
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1203
|
+
stats: { views: 530, helpful: 460, notHelpful: 20 },
|
|
1259
1204
|
seo: {
|
|
1260
|
-
slug: "
|
|
1261
|
-
metaTitle: "
|
|
1262
|
-
metaDescription: "
|
|
1205
|
+
slug: "how-to-reset-password",
|
|
1206
|
+
metaTitle: "How to Reset My Password | LetItRip Account Help",
|
|
1207
|
+
metaDescription: "Use the Forgot Password link on the login page. A reset link will be emailed to you and expires in 30 minutes.",
|
|
1263
1208
|
},
|
|
1264
1209
|
isActive: true,
|
|
1265
1210
|
createdBy: "system",
|
|
1266
1211
|
},
|
|
1267
1212
|
{
|
|
1268
|
-
question: "
|
|
1269
|
-
answer: "
|
|
1270
|
-
category: "
|
|
1213
|
+
question: "How do I save items to my wishlist?",
|
|
1214
|
+
answer: "<p>On any product listing, click the <strong>heart icon</strong> to add it to your wishlist. You need to be signed in to use this feature. View and manage your saved items from <strong>My Account → Wishlist</strong>.</p>",
|
|
1215
|
+
category: "account_security",
|
|
1271
1216
|
showOnHomepage: false,
|
|
1272
1217
|
showInFooter: false,
|
|
1273
1218
|
isPinned: false,
|
|
1274
|
-
order:
|
|
1275
|
-
priority:
|
|
1276
|
-
tags: ["
|
|
1219
|
+
order: 3,
|
|
1220
|
+
priority: 6,
|
|
1221
|
+
tags: ["wishlist", "save", "heart", "favourite"],
|
|
1277
1222
|
relatedFAQs: [],
|
|
1278
1223
|
useSiteSettings: false,
|
|
1279
|
-
|
|
1280
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1224
|
+
stats: { views: 390, helpful: 340, notHelpful: 14 },
|
|
1281
1225
|
seo: {
|
|
1282
|
-
slug: "
|
|
1283
|
-
metaTitle: "
|
|
1284
|
-
metaDescription: "
|
|
1226
|
+
slug: "how-to-save-to-wishlist",
|
|
1227
|
+
metaTitle: "How to Save Items to My Wishlist | LetItRip FAQ",
|
|
1228
|
+
metaDescription: "Click the heart icon on any product listing to save it to your wishlist. Manage it from My Account.",
|
|
1285
1229
|
},
|
|
1286
1230
|
isActive: true,
|
|
1287
1231
|
createdBy: "system",
|
|
1288
1232
|
},
|
|
1289
1233
|
{
|
|
1290
|
-
question: "
|
|
1291
|
-
answer: "
|
|
1292
|
-
category: "
|
|
1234
|
+
question: "How do I update my delivery address?",
|
|
1235
|
+
answer: "<p>Go to <strong>My Account → Addresses</strong> to add, edit, or delete delivery addresses. You can save multiple addresses and mark one as default. You can also add a new address at checkout without saving it to your account.</p>",
|
|
1236
|
+
category: "account_security",
|
|
1293
1237
|
showOnHomepage: false,
|
|
1294
1238
|
showInFooter: false,
|
|
1295
1239
|
isPinned: false,
|
|
1296
|
-
order:
|
|
1297
|
-
priority:
|
|
1298
|
-
tags: ["
|
|
1240
|
+
order: 4,
|
|
1241
|
+
priority: 6,
|
|
1242
|
+
tags: ["address", "delivery-address", "update", "account"],
|
|
1299
1243
|
relatedFAQs: [],
|
|
1300
1244
|
useSiteSettings: false,
|
|
1301
|
-
|
|
1302
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1245
|
+
stats: { views: 420, helpful: 370, notHelpful: 16 },
|
|
1303
1246
|
seo: {
|
|
1304
|
-
slug: "
|
|
1305
|
-
metaTitle: "
|
|
1306
|
-
metaDescription: "
|
|
1247
|
+
slug: "update-delivery-address",
|
|
1248
|
+
metaTitle: "How to Update My Delivery Address | LetItRip Account",
|
|
1249
|
+
metaDescription: "Add, edit, or delete delivery addresses from My Account → Addresses. Set a default address for faster checkout.",
|
|
1307
1250
|
},
|
|
1308
1251
|
isActive: true,
|
|
1309
1252
|
createdBy: "system",
|
|
1310
1253
|
},
|
|
1311
1254
|
{
|
|
1312
|
-
question: "
|
|
1313
|
-
answer: "
|
|
1314
|
-
category: "
|
|
1255
|
+
question: "Is my personal information secure?",
|
|
1256
|
+
answer: "<p>Yes. LetItRip follows industry best practices for data security:</p><ul><li>Passwords are hashed and never stored in plain text</li><li>Personal data is encrypted at rest and in transit (TLS 1.3)</li><li>We do not sell or share your personal data with third parties for marketing</li><li>Payment details are handled exclusively by Razorpay — we never see your card number</li></ul>",
|
|
1257
|
+
category: "account_security",
|
|
1315
1258
|
showOnHomepage: false,
|
|
1316
1259
|
showInFooter: false,
|
|
1317
1260
|
isPinned: false,
|
|
1318
|
-
order:
|
|
1319
|
-
priority:
|
|
1320
|
-
tags: ["
|
|
1261
|
+
order: 5,
|
|
1262
|
+
priority: 9,
|
|
1263
|
+
tags: ["security", "privacy", "data", "encrypted", "password"],
|
|
1321
1264
|
relatedFAQs: [],
|
|
1322
|
-
useSiteSettings:
|
|
1323
|
-
|
|
1324
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1265
|
+
useSiteSettings: false,
|
|
1266
|
+
stats: { views: 580, helpful: 510, notHelpful: 18 },
|
|
1325
1267
|
seo: {
|
|
1326
|
-
slug: "
|
|
1327
|
-
metaTitle: "
|
|
1328
|
-
metaDescription: "
|
|
1268
|
+
slug: "is-personal-information-secure",
|
|
1269
|
+
metaTitle: "Is My Personal Information Secure on LetItRip? | FAQ",
|
|
1270
|
+
metaDescription: "LetItRip encrypts your data at rest and in transit. Payments are handled by Razorpay — we never store card details.",
|
|
1329
1271
|
},
|
|
1330
1272
|
isActive: true,
|
|
1331
1273
|
createdBy: "system",
|
|
1332
1274
|
},
|
|
1333
1275
|
{
|
|
1334
|
-
question: "
|
|
1335
|
-
answer: "
|
|
1336
|
-
category: "
|
|
1276
|
+
question: "What should I do if my account is compromised?",
|
|
1277
|
+
answer: "<p>If you suspect your account has been accessed without your permission:</p><ol><li><strong>Change your password immediately</strong> from Account → Security</li><li>Check your order history for any unauthorised purchases</li><li>Contact LetItRip support at <strong>{{supportEmail}}</strong> with the subject line 'Account Compromised'</li><li>We'll temporarily lock the account and investigate</li></ol>",
|
|
1278
|
+
category: "account_security",
|
|
1337
1279
|
showOnHomepage: false,
|
|
1338
1280
|
showInFooter: false,
|
|
1339
1281
|
isPinned: false,
|
|
1340
|
-
order:
|
|
1341
|
-
priority:
|
|
1342
|
-
tags: ["
|
|
1282
|
+
order: 6,
|
|
1283
|
+
priority: 10,
|
|
1284
|
+
tags: ["hacked", "compromised", "security", "password", "account"],
|
|
1343
1285
|
relatedFAQs: [],
|
|
1344
|
-
useSiteSettings:
|
|
1345
|
-
|
|
1346
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1286
|
+
useSiteSettings: true,
|
|
1287
|
+
stats: { views: 340, helpful: 310, notHelpful: 12 },
|
|
1347
1288
|
seo: {
|
|
1348
|
-
slug: "
|
|
1349
|
-
metaTitle: "
|
|
1350
|
-
metaDescription: "
|
|
1289
|
+
slug: "account-compromised-what-to-do",
|
|
1290
|
+
metaTitle: "What to Do If My Account Is Compromised | LetItRip Security",
|
|
1291
|
+
metaDescription: "Change your password immediately and contact LetItRip support if you suspect unauthorised access to your account.",
|
|
1351
1292
|
},
|
|
1352
1293
|
isActive: true,
|
|
1353
1294
|
createdBy: "system",
|
|
1354
1295
|
},
|
|
1355
1296
|
{
|
|
1356
|
-
question: "
|
|
1357
|
-
answer: "No
|
|
1358
|
-
category: "
|
|
1297
|
+
question: "Can I have multiple accounts?",
|
|
1298
|
+
answer: "<p>No. Each person is permitted <strong>one buyer account</strong> on LetItRip. Creating multiple accounts to exploit promotions, coupons, or giveaways is a violation of our Terms of Service and may result in all associated accounts being suspended.</p>",
|
|
1299
|
+
category: "account_security",
|
|
1359
1300
|
showOnHomepage: false,
|
|
1360
1301
|
showInFooter: false,
|
|
1361
1302
|
isPinned: false,
|
|
1362
|
-
order:
|
|
1363
|
-
priority:
|
|
1364
|
-
tags: ["
|
|
1303
|
+
order: 7,
|
|
1304
|
+
priority: 7,
|
|
1305
|
+
tags: ["multiple-accounts", "duplicate", "terms", "suspension"],
|
|
1365
1306
|
relatedFAQs: [],
|
|
1366
1307
|
useSiteSettings: false,
|
|
1367
|
-
|
|
1368
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1308
|
+
stats: { views: 280, helpful: 240, notHelpful: 18 },
|
|
1369
1309
|
seo: {
|
|
1370
|
-
slug: "
|
|
1371
|
-
metaTitle: "
|
|
1372
|
-
metaDescription: "
|
|
1310
|
+
slug: "can-i-have-multiple-accounts",
|
|
1311
|
+
metaTitle: "Can I Have Multiple Accounts on LetItRip? | FAQ",
|
|
1312
|
+
metaDescription: "One account per person is allowed on LetItRip. Multiple accounts violate our Terms of Service.",
|
|
1373
1313
|
},
|
|
1374
1314
|
isActive: true,
|
|
1375
1315
|
createdBy: "system",
|
|
1376
1316
|
},
|
|
1377
1317
|
{
|
|
1378
|
-
question: "
|
|
1379
|
-
answer:
|
|
1380
|
-
category: "
|
|
1318
|
+
question: "How do I close my account?",
|
|
1319
|
+
answer: "<p>To close your account, email us at <strong>{{supportEmail}}</strong> with the subject 'Account Deletion Request'. We'll process it within 7 business days. Note that any pending orders must be resolved before deletion. Closed accounts cannot be restored.</p>",
|
|
1320
|
+
category: "account_security",
|
|
1381
1321
|
showOnHomepage: false,
|
|
1382
1322
|
showInFooter: false,
|
|
1383
1323
|
isPinned: false,
|
|
1384
|
-
order:
|
|
1324
|
+
order: 8,
|
|
1385
1325
|
priority: 5,
|
|
1386
|
-
tags: ["
|
|
1326
|
+
tags: ["close-account", "delete-account", "gdpr", "data"],
|
|
1387
1327
|
relatedFAQs: [],
|
|
1388
|
-
useSiteSettings:
|
|
1389
|
-
|
|
1390
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1328
|
+
useSiteSettings: true,
|
|
1329
|
+
stats: { views: 220, helpful: 190, notHelpful: 12 },
|
|
1391
1330
|
seo: {
|
|
1392
|
-
slug: "
|
|
1393
|
-
metaTitle: "
|
|
1394
|
-
metaDescription: "
|
|
1331
|
+
slug: "how-to-close-account",
|
|
1332
|
+
metaTitle: "How to Close My LetItRip Account | Account Deletion",
|
|
1333
|
+
metaDescription: "Email support to request account deletion. Processed within 7 business days. Pending orders must be resolved first.",
|
|
1395
1334
|
},
|
|
1396
1335
|
isActive: true,
|
|
1397
1336
|
createdBy: "system",
|
|
1398
1337
|
},
|
|
1338
|
+
// ============================================
|
|
1339
|
+
// TECHNICAL SUPPORT — 5 FAQs
|
|
1340
|
+
// ============================================
|
|
1399
1341
|
{
|
|
1400
|
-
question: "
|
|
1401
|
-
answer: "
|
|
1402
|
-
category: "
|
|
1342
|
+
question: "The website is slow or not loading — what should I do?",
|
|
1343
|
+
answer: "<p>Try these steps:</p><ol><li>Refresh the page (Ctrl+R / Cmd+R)</li><li>Clear your browser cache and cookies</li><li>Try a different browser (Chrome, Firefox, or Edge are recommended)</li><li>Check your internet connection</li><li>If the issue persists across browsers, there may be a temporary outage — check our social media pages for updates</li></ol>",
|
|
1344
|
+
category: "technical_support",
|
|
1403
1345
|
showOnHomepage: false,
|
|
1404
1346
|
showInFooter: false,
|
|
1405
1347
|
isPinned: false,
|
|
1406
|
-
order:
|
|
1407
|
-
priority:
|
|
1408
|
-
tags: ["
|
|
1348
|
+
order: 1,
|
|
1349
|
+
priority: 7,
|
|
1350
|
+
tags: ["slow", "loading", "browser", "cache", "outage"],
|
|
1409
1351
|
relatedFAQs: [],
|
|
1410
1352
|
useSiteSettings: false,
|
|
1411
|
-
|
|
1412
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1353
|
+
stats: { views: 380, helpful: 310, notHelpful: 28 },
|
|
1413
1354
|
seo: {
|
|
1414
|
-
slug: "
|
|
1415
|
-
metaTitle: "
|
|
1416
|
-
metaDescription: "
|
|
1355
|
+
slug: "website-slow-not-loading",
|
|
1356
|
+
metaTitle: "Website Slow or Not Loading? | LetItRip Technical Help",
|
|
1357
|
+
metaDescription: "Fix a slow or unresponsive LetItRip website by clearing cache, trying a different browser, or checking your connection.",
|
|
1417
1358
|
},
|
|
1418
1359
|
isActive: true,
|
|
1419
1360
|
createdBy: "system",
|
|
1420
1361
|
},
|
|
1421
1362
|
{
|
|
1422
|
-
question: "
|
|
1423
|
-
answer: "
|
|
1424
|
-
category: "
|
|
1363
|
+
question: "I can't complete my checkout — what's wrong?",
|
|
1364
|
+
answer: "<p>Common checkout issues and fixes:</p><ul><li><strong>Payment not going through:</strong> Try a different payment method or browser</li><li><strong>Address validation error:</strong> Ensure your pincode matches your city and state</li><li><strong>Coupon not applying:</strong> Check the code's expiry and minimum order value</li><li><strong>Cart is empty:</strong> The item may have gone out of stock — refresh and re-add</li></ul><p>If the problem continues, email <strong>{{supportEmail}}</strong> with a screenshot.</p>",
|
|
1365
|
+
category: "technical_support",
|
|
1425
1366
|
showOnHomepage: false,
|
|
1426
1367
|
showInFooter: false,
|
|
1427
1368
|
isPinned: false,
|
|
1428
|
-
order:
|
|
1429
|
-
priority:
|
|
1430
|
-
tags: ["
|
|
1369
|
+
order: 2,
|
|
1370
|
+
priority: 8,
|
|
1371
|
+
tags: ["checkout", "payment-error", "cart", "pincode", "coupon"],
|
|
1431
1372
|
relatedFAQs: [],
|
|
1432
|
-
useSiteSettings:
|
|
1433
|
-
|
|
1434
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1373
|
+
useSiteSettings: true,
|
|
1374
|
+
stats: { views: 490, helpful: 420, notHelpful: 35 },
|
|
1435
1375
|
seo: {
|
|
1436
|
-
slug: "
|
|
1437
|
-
metaTitle: "
|
|
1438
|
-
metaDescription: "
|
|
1376
|
+
slug: "cant-complete-checkout",
|
|
1377
|
+
metaTitle: "I Can't Complete My Checkout | LetItRip Technical FAQ",
|
|
1378
|
+
metaDescription: "Resolve checkout issues on LetItRip: payment errors, address problems, coupon issues, and empty cart errors.",
|
|
1439
1379
|
},
|
|
1440
1380
|
isActive: true,
|
|
1441
1381
|
createdBy: "system",
|
|
1442
1382
|
},
|
|
1443
1383
|
{
|
|
1444
|
-
question: "
|
|
1445
|
-
answer: '
|
|
1446
|
-
category: "
|
|
1384
|
+
question: "My auction bid isn't registering — what do I do?",
|
|
1385
|
+
answer: "<p>If your bid doesn't appear after clicking Place Bid:</p><ol><li>Refresh the page to check if the bid was actually recorded</li><li>Ensure you're signed in — bids require an active session</li><li>Check that your bid amount is higher than the current highest bid (plus any minimum increment)</li><li>If the problem persists, contact support with the auction listing URL and your bid amount</li></ol>",
|
|
1386
|
+
category: "technical_support",
|
|
1447
1387
|
showOnHomepage: false,
|
|
1448
1388
|
showInFooter: false,
|
|
1449
1389
|
isPinned: false,
|
|
1450
|
-
order:
|
|
1451
|
-
priority:
|
|
1452
|
-
tags: ["
|
|
1390
|
+
order: 3,
|
|
1391
|
+
priority: 7,
|
|
1392
|
+
tags: ["auction", "bid", "not-registering", "error"],
|
|
1453
1393
|
relatedFAQs: [],
|
|
1454
1394
|
useSiteSettings: false,
|
|
1455
|
-
|
|
1456
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1395
|
+
stats: { views: 310, helpful: 270, notHelpful: 22 },
|
|
1457
1396
|
seo: {
|
|
1458
|
-
slug: "
|
|
1459
|
-
metaTitle: "
|
|
1460
|
-
metaDescription: "
|
|
1397
|
+
slug: "auction-bid-not-registering",
|
|
1398
|
+
metaTitle: "My Auction Bid Isn't Registering | LetItRip Technical FAQ",
|
|
1399
|
+
metaDescription: "If your bid doesn't register, refresh the page, check you're signed in, and ensure your bid exceeds the current highest bid.",
|
|
1461
1400
|
},
|
|
1462
1401
|
isActive: true,
|
|
1463
1402
|
createdBy: "system",
|
|
1464
1403
|
},
|
|
1465
1404
|
{
|
|
1466
|
-
question: "
|
|
1467
|
-
answer: "If
|
|
1468
|
-
category: "
|
|
1405
|
+
question: "I'm not receiving email notifications — how do I fix this?",
|
|
1406
|
+
answer: "<p>If you're not getting emails from LetItRip:</p><ol><li>Check your spam or promotions folder</li><li>Add <strong>noreply@letitrip.in</strong> to your email contacts/safe-senders list</li><li>Verify your email address in Account → Profile</li><li>Check your notification preferences in Account → Notifications</li></ol>",
|
|
1407
|
+
category: "technical_support",
|
|
1469
1408
|
showOnHomepage: false,
|
|
1470
1409
|
showInFooter: false,
|
|
1471
1410
|
isPinned: false,
|
|
1472
|
-
order:
|
|
1411
|
+
order: 4,
|
|
1473
1412
|
priority: 6,
|
|
1474
|
-
tags: ["
|
|
1413
|
+
tags: ["email", "notifications", "spam", "alerts"],
|
|
1475
1414
|
relatedFAQs: [],
|
|
1476
1415
|
useSiteSettings: false,
|
|
1477
|
-
|
|
1478
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1416
|
+
stats: { views: 290, helpful: 250, notHelpful: 18 },
|
|
1479
1417
|
seo: {
|
|
1480
|
-
slug: "
|
|
1481
|
-
metaTitle: "
|
|
1482
|
-
metaDescription: "
|
|
1418
|
+
slug: "not-receiving-email-notifications",
|
|
1419
|
+
metaTitle: "Not Receiving Email Notifications | LetItRip Technical Help",
|
|
1420
|
+
metaDescription: "Fix missing LetItRip emails by checking spam, whitelisting noreply@letitrip.in, and reviewing notification settings.",
|
|
1483
1421
|
},
|
|
1484
1422
|
isActive: true,
|
|
1485
1423
|
createdBy: "system",
|
|
1486
1424
|
},
|
|
1487
1425
|
{
|
|
1488
|
-
question: "
|
|
1489
|
-
answer: "
|
|
1490
|
-
category: "
|
|
1426
|
+
question: "How do I report a bug or technical issue?",
|
|
1427
|
+
answer: "<p>Found a bug? We appreciate your help! Email <strong>{{supportEmail}}</strong> with:</p><ul><li>A description of the issue</li><li>The URL where it occurred</li><li>Your browser and device (e.g., Chrome 124 on Android)</li><li>A screenshot if possible</li></ul><p>Our engineering team reviews all bug reports and will acknowledge your report within 2 business days.</p>",
|
|
1428
|
+
category: "technical_support",
|
|
1491
1429
|
showOnHomepage: false,
|
|
1492
1430
|
showInFooter: false,
|
|
1493
1431
|
isPinned: false,
|
|
1494
|
-
order:
|
|
1495
|
-
priority:
|
|
1496
|
-
tags: ["
|
|
1432
|
+
order: 5,
|
|
1433
|
+
priority: 5,
|
|
1434
|
+
tags: ["bug", "report", "technical", "issue", "feedback"],
|
|
1497
1435
|
relatedFAQs: [],
|
|
1498
|
-
useSiteSettings:
|
|
1499
|
-
|
|
1500
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1436
|
+
useSiteSettings: true,
|
|
1437
|
+
stats: { views: 240, helpful: 210, notHelpful: 10 },
|
|
1501
1438
|
seo: {
|
|
1502
|
-
slug: "
|
|
1503
|
-
metaTitle: "
|
|
1504
|
-
metaDescription: "
|
|
1439
|
+
slug: "report-bug-technical-issue",
|
|
1440
|
+
metaTitle: "How to Report a Bug on LetItRip | Technical Support",
|
|
1441
|
+
metaDescription: "Report bugs to LetItRip support with a URL, browser details, and screenshot. Acknowledged within 2 business days.",
|
|
1505
1442
|
},
|
|
1506
1443
|
isActive: true,
|
|
1507
1444
|
createdBy: "system",
|
|
1508
1445
|
},
|
|
1509
|
-
//
|
|
1510
|
-
//
|
|
1511
|
-
//
|
|
1446
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1447
|
+
// HOT WHEELS — 10 FAQs
|
|
1448
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1512
1449
|
{
|
|
1513
|
-
question: "
|
|
1514
|
-
answer:
|
|
1515
|
-
category: "
|
|
1450
|
+
question: "What is a Hot Wheels Treasure Hunt (TH) car?",
|
|
1451
|
+
answer: "<p>Treasure Hunts are special variant cars hidden within Hot Wheels mainline assortments. They feature a flame logo on the card, a real rider rubber tire variant (on Super Treasure Hunts), and a subtle 'TH' marking on the car. <strong>Super Treasure Hunts</strong> have a spectraflame metallic paint finish and real rider tires — they are rarer and more valuable. Both types are randomly packed: approximately 1 TH per case and 1 STH per several cases.</p>",
|
|
1452
|
+
category: "product_information",
|
|
1516
1453
|
showOnHomepage: false,
|
|
1517
1454
|
showInFooter: false,
|
|
1518
1455
|
isPinned: false,
|
|
1519
1456
|
order: 1,
|
|
1520
1457
|
priority: 8,
|
|
1521
|
-
tags: ["
|
|
1458
|
+
tags: ["hot-wheels", "treasure-hunt", "super-treasure-hunt", "th", "sth"],
|
|
1522
1459
|
relatedFAQs: [],
|
|
1523
1460
|
useSiteSettings: false,
|
|
1524
|
-
|
|
1525
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1461
|
+
stats: { views: 620, helpful: 540, notHelpful: 22 },
|
|
1526
1462
|
seo: {
|
|
1527
|
-
slug: "
|
|
1528
|
-
metaTitle: "
|
|
1529
|
-
metaDescription: "
|
|
1463
|
+
slug: "hot-wheels-treasure-hunt-guide",
|
|
1464
|
+
metaTitle: "What is a Hot Wheels Treasure Hunt? | LetItRip Guide",
|
|
1465
|
+
metaDescription: "Treasure Hunts and Super Treasure Hunts explained — rarity, markings, and what makes them collectible.",
|
|
1530
1466
|
},
|
|
1531
1467
|
isActive: true,
|
|
1532
1468
|
createdBy: "system",
|
|
1533
1469
|
},
|
|
1534
1470
|
{
|
|
1535
|
-
question: "
|
|
1536
|
-
answer:
|
|
1537
|
-
category: "
|
|
1471
|
+
question: "What is Hot Wheels Car Culture and how is it different from mainline?",
|
|
1472
|
+
answer: "<p><strong>Hot Wheels Car Culture</strong> is a premium line of cars sold in 5-car packs, featuring realistic licensed vehicles, detailed casting, premium rubber tires, and high-quality paint. Unlike the basic 97p mainline cars, Car Culture series focus on specific themes (e.g., Japan Historics, Germany or Bust, Car Culture Mix) and are sold primarily at specialty retailers. They are not mixed into standard pegs.</p>",
|
|
1473
|
+
category: "product_information",
|
|
1538
1474
|
showOnHomepage: false,
|
|
1539
1475
|
showInFooter: false,
|
|
1540
1476
|
isPinned: false,
|
|
1541
1477
|
order: 2,
|
|
1542
1478
|
priority: 7,
|
|
1543
|
-
tags: ["
|
|
1479
|
+
tags: ["hot-wheels", "car-culture", "premium", "mainline", "difference"],
|
|
1544
1480
|
relatedFAQs: [],
|
|
1545
1481
|
useSiteSettings: false,
|
|
1546
|
-
|
|
1547
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1482
|
+
stats: { views: 480, helpful: 410, notHelpful: 18 },
|
|
1548
1483
|
seo: {
|
|
1549
|
-
slug: "
|
|
1550
|
-
metaTitle: "
|
|
1551
|
-
metaDescription: "
|
|
1484
|
+
slug: "hot-wheels-car-culture-vs-mainline",
|
|
1485
|
+
metaTitle: "Hot Wheels Car Culture vs Mainline | LetItRip FAQ",
|
|
1486
|
+
metaDescription: "Understand the difference between Hot Wheels mainline and premium Car Culture series.",
|
|
1552
1487
|
},
|
|
1553
1488
|
isActive: true,
|
|
1554
1489
|
createdBy: "system",
|
|
1555
1490
|
},
|
|
1556
1491
|
{
|
|
1557
|
-
question: "
|
|
1558
|
-
answer:
|
|
1559
|
-
category: "
|
|
1492
|
+
question: "Are Hot Wheels cars on LetItRip authentic and not counterfeit?",
|
|
1493
|
+
answer: "<p>Yes. All Hot Wheels listings on LetItRip go through seller verification. Sellers must provide proof of purchase (retailer invoice or distributor import bill) to list. We strongly encourage buyers to check the card back for the authentic Hot Wheels logo and copyright markings. If you receive a counterfeit, report it immediately and we will take action under our Buyer Protection policy.</p>",
|
|
1494
|
+
category: "product_information",
|
|
1560
1495
|
showOnHomepage: false,
|
|
1561
1496
|
showInFooter: false,
|
|
1562
1497
|
isPinned: false,
|
|
1563
1498
|
order: 3,
|
|
1564
|
-
priority:
|
|
1565
|
-
tags: ["
|
|
1499
|
+
priority: 8,
|
|
1500
|
+
tags: ["hot-wheels", "authentic", "counterfeit", "verification"],
|
|
1566
1501
|
relatedFAQs: [],
|
|
1567
1502
|
useSiteSettings: false,
|
|
1568
|
-
|
|
1569
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1503
|
+
stats: { views: 390, helpful: 340, notHelpful: 14 },
|
|
1570
1504
|
seo: {
|
|
1571
|
-
slug: "
|
|
1572
|
-
metaTitle: "
|
|
1573
|
-
metaDescription: "
|
|
1505
|
+
slug: "hot-wheels-authenticity-check",
|
|
1506
|
+
metaTitle: "Are Hot Wheels on LetItRip Authentic? | Verification",
|
|
1507
|
+
metaDescription: "How LetItRip ensures Hot Wheels authenticity and what to do if you receive a fake.",
|
|
1574
1508
|
},
|
|
1575
1509
|
isActive: true,
|
|
1576
1510
|
createdBy: "system",
|
|
1577
1511
|
},
|
|
1578
1512
|
{
|
|
1579
|
-
question: "How
|
|
1580
|
-
answer:
|
|
1581
|
-
category: "
|
|
1513
|
+
question: "How should I store Hot Wheels cars to preserve their value?",
|
|
1514
|
+
answer: "<p>For investment-grade storage: <ul><li>Keep cars <strong>on card</strong> — removing from packaging destroys most value</li><li>Store vertically in acrylic display cases to avoid card creasing</li><li>Avoid direct sunlight — UV fades card art and paint</li><li>Control humidity (40–55% RH) to prevent card warping</li><li>Super Treasure Hunts and Car Culture premium cars benefit from individual acrylic protectors</li></ul> For loose cars, separate by casting to prevent paint transfer.</p>",
|
|
1515
|
+
category: "product_information",
|
|
1582
1516
|
showOnHomepage: false,
|
|
1583
1517
|
showInFooter: false,
|
|
1584
1518
|
isPinned: false,
|
|
1585
1519
|
order: 4,
|
|
1586
1520
|
priority: 6,
|
|
1587
|
-
tags: ["
|
|
1521
|
+
tags: ["hot-wheels", "storage", "preservation", "collecting", "value"],
|
|
1588
1522
|
relatedFAQs: [],
|
|
1589
1523
|
useSiteSettings: false,
|
|
1590
|
-
|
|
1591
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1524
|
+
stats: { views: 310, helpful: 270, notHelpful: 12 },
|
|
1592
1525
|
seo: {
|
|
1593
|
-
slug: "
|
|
1594
|
-
metaTitle: "
|
|
1595
|
-
metaDescription: "
|
|
1526
|
+
slug: "hot-wheels-storage-tips",
|
|
1527
|
+
metaTitle: "How to Store Hot Wheels to Preserve Value | LetItRip",
|
|
1528
|
+
metaDescription: "Tips for keeping Hot Wheels on card in mint condition to preserve collectible value.",
|
|
1596
1529
|
},
|
|
1597
1530
|
isActive: true,
|
|
1598
1531
|
createdBy: "system",
|
|
1599
1532
|
},
|
|
1600
1533
|
{
|
|
1601
|
-
question: "Can I
|
|
1602
|
-
answer:
|
|
1603
|
-
category: "
|
|
1534
|
+
question: "Can I request specific Hot Wheels colour variants or casting variants?",
|
|
1535
|
+
answer: "<p>Sellers list specific variants they have in stock — you cannot request custom variants. However, you can <strong>filter by category</strong> or use the search bar to find a specific casting name. If a variant you want isn't listed, you can message a seller directly or check back as inventory updates frequently. You can also use the wishlist feature to be notified when a matching product is listed.</p>",
|
|
1536
|
+
category: "product_information",
|
|
1604
1537
|
showOnHomepage: false,
|
|
1605
1538
|
showInFooter: false,
|
|
1606
1539
|
isPinned: false,
|
|
1607
1540
|
order: 5,
|
|
1608
|
-
priority:
|
|
1609
|
-
tags: ["
|
|
1541
|
+
priority: 5,
|
|
1542
|
+
tags: ["hot-wheels", "variant", "casting", "request"],
|
|
1610
1543
|
relatedFAQs: [],
|
|
1611
1544
|
useSiteSettings: false,
|
|
1612
|
-
|
|
1613
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1545
|
+
stats: { views: 260, helpful: 210, notHelpful: 18 },
|
|
1614
1546
|
seo: {
|
|
1615
|
-
slug: "
|
|
1616
|
-
metaTitle: "
|
|
1617
|
-
metaDescription: "
|
|
1547
|
+
slug: "hot-wheels-variant-request",
|
|
1548
|
+
metaTitle: "Can I Request Hot Wheels Variants? | LetItRip FAQ",
|
|
1549
|
+
metaDescription: "How to find specific Hot Wheels variants and colour editions on LetItRip.",
|
|
1618
1550
|
},
|
|
1619
1551
|
isActive: true,
|
|
1620
1552
|
createdBy: "system",
|
|
1621
1553
|
},
|
|
1622
1554
|
{
|
|
1623
|
-
question: "
|
|
1624
|
-
answer:
|
|
1625
|
-
category: "
|
|
1555
|
+
question: "What is the difference between Hot Wheels basic, premium, and Car Culture?",
|
|
1556
|
+
answer: "<p><strong>Basic mainline</strong> cars are the standard single-blister-card cars sold at retail (≈₹200–₹250 MRP). They use die-cast metal bodies with plastic bases and painted plastic wheels. <strong>Premium</strong> series (e.g., Fast & Furious, Marvel, DC) feature licensed character vehicles, detailed interiors, and often rubber tires. <strong>Car Culture</strong> is the highest tier — themed multi-packs with ultra-detailed casting, real rider tires, and premium finishes.</p>",
|
|
1557
|
+
category: "product_information",
|
|
1626
1558
|
showOnHomepage: false,
|
|
1627
1559
|
showInFooter: false,
|
|
1628
1560
|
isPinned: false,
|
|
1629
1561
|
order: 6,
|
|
1630
|
-
priority:
|
|
1631
|
-
tags: ["
|
|
1562
|
+
priority: 6,
|
|
1563
|
+
tags: ["hot-wheels", "basic", "premium", "car-culture", "comparison"],
|
|
1632
1564
|
relatedFAQs: [],
|
|
1633
1565
|
useSiteSettings: false,
|
|
1634
|
-
|
|
1635
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1566
|
+
stats: { views: 420, helpful: 370, notHelpful: 16 },
|
|
1636
1567
|
seo: {
|
|
1637
|
-
slug: "
|
|
1638
|
-
metaTitle: "
|
|
1639
|
-
metaDescription: "
|
|
1568
|
+
slug: "hot-wheels-tiers-comparison",
|
|
1569
|
+
metaTitle: "Hot Wheels Basic vs Premium vs Car Culture | LetItRip FAQ",
|
|
1570
|
+
metaDescription: "Compare Hot Wheels product tiers to understand what you're buying.",
|
|
1640
1571
|
},
|
|
1641
1572
|
isActive: true,
|
|
1642
1573
|
createdBy: "system",
|
|
1643
1574
|
},
|
|
1644
1575
|
{
|
|
1645
|
-
question: "
|
|
1646
|
-
answer: "
|
|
1647
|
-
category: "
|
|
1576
|
+
question: "Do Hot Wheels prices on LetItRip include GST?",
|
|
1577
|
+
answer: "<p>All prices displayed on LetItRip include GST (18% on most hobby/toy items). Individual sellers who are GST-registered will issue a tax invoice upon request. If you need a GST invoice for your business, please share your GSTIN with the seller at checkout or via message before placing the order.</p>",
|
|
1578
|
+
category: "orders_payment",
|
|
1648
1579
|
showOnHomepage: false,
|
|
1649
1580
|
showInFooter: false,
|
|
1650
1581
|
isPinned: false,
|
|
1651
|
-
order:
|
|
1582
|
+
order: 13,
|
|
1652
1583
|
priority: 5,
|
|
1653
|
-
tags: ["
|
|
1584
|
+
tags: ["hot-wheels", "gst", "tax", "invoice", "price"],
|
|
1654
1585
|
relatedFAQs: [],
|
|
1655
1586
|
useSiteSettings: false,
|
|
1656
|
-
|
|
1657
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1587
|
+
stats: { views: 280, helpful: 240, notHelpful: 12 },
|
|
1658
1588
|
seo: {
|
|
1659
|
-
slug: "
|
|
1660
|
-
metaTitle: "
|
|
1661
|
-
metaDescription: "
|
|
1589
|
+
slug: "hot-wheels-gst-pricing",
|
|
1590
|
+
metaTitle: "Are Hot Wheels Prices GST Inclusive on LetItRip?",
|
|
1591
|
+
metaDescription: "LetItRip prices for Hot Wheels include GST. Request a tax invoice from the seller if needed.",
|
|
1662
1592
|
},
|
|
1663
1593
|
isActive: true,
|
|
1664
1594
|
createdBy: "system",
|
|
1665
1595
|
},
|
|
1666
1596
|
{
|
|
1667
|
-
question: "
|
|
1668
|
-
answer:
|
|
1669
|
-
category: "
|
|
1597
|
+
question: "What is a Hot Wheels track set and which sets are compatible?",
|
|
1598
|
+
answer: "<p>Hot Wheels track sets come with flexible orange track segments that connect modularly. All standard Hot Wheels cars (1:64 scale) are compatible with all track sets. Sets range from basic starters (~₹500) to elaborate motorized multi-loop systems (~₹5,000+). When buying track, check the connector type — older sets use T-connectors while newer ones use a push-lock connector. Both are compatible with standard cars.</p>",
|
|
1599
|
+
category: "product_information",
|
|
1670
1600
|
showOnHomepage: false,
|
|
1671
1601
|
showInFooter: false,
|
|
1672
1602
|
isPinned: false,
|
|
1673
|
-
order:
|
|
1674
|
-
priority:
|
|
1675
|
-
tags: ["
|
|
1603
|
+
order: 7,
|
|
1604
|
+
priority: 5,
|
|
1605
|
+
tags: ["hot-wheels", "track", "set", "compatibility", "orange-track"],
|
|
1676
1606
|
relatedFAQs: [],
|
|
1677
1607
|
useSiteSettings: false,
|
|
1678
|
-
|
|
1679
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1608
|
+
stats: { views: 350, helpful: 300, notHelpful: 15 },
|
|
1680
1609
|
seo: {
|
|
1681
|
-
slug: "
|
|
1682
|
-
metaTitle: "
|
|
1683
|
-
metaDescription: "
|
|
1610
|
+
slug: "hot-wheels-track-sets-compatibility",
|
|
1611
|
+
metaTitle: "Hot Wheels Track Set Compatibility | LetItRip FAQ",
|
|
1612
|
+
metaDescription: "Are Hot Wheels track sets compatible? Learn about connector types and set sizes.",
|
|
1684
1613
|
},
|
|
1685
1614
|
isActive: true,
|
|
1686
1615
|
createdBy: "system",
|
|
1687
1616
|
},
|
|
1688
1617
|
{
|
|
1689
|
-
question: "
|
|
1690
|
-
answer:
|
|
1691
|
-
category: "
|
|
1618
|
+
question: "What year is a Hot Wheels car from — how do I identify the year?",
|
|
1619
|
+
answer: "<p>The year of a Hot Wheels car can be identified from the card back (series year is printed at the top or bottom). For loose cars, check the base of the car — the casting year and copyright year are usually stamped there, though note this reflects the casting creation year, not the specific production run year. Card back also lists the series mix letter and car number within that mix.</p>",
|
|
1620
|
+
category: "product_information",
|
|
1692
1621
|
showOnHomepage: false,
|
|
1693
1622
|
showInFooter: false,
|
|
1694
1623
|
isPinned: false,
|
|
1695
|
-
order:
|
|
1624
|
+
order: 8,
|
|
1696
1625
|
priority: 4,
|
|
1697
|
-
tags: ["
|
|
1626
|
+
tags: ["hot-wheels", "year", "identify", "casting", "card-back"],
|
|
1698
1627
|
relatedFAQs: [],
|
|
1699
1628
|
useSiteSettings: false,
|
|
1700
|
-
|
|
1701
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1629
|
+
stats: { views: 290, helpful: 250, notHelpful: 10 },
|
|
1702
1630
|
seo: {
|
|
1703
|
-
slug: "
|
|
1704
|
-
metaTitle: "
|
|
1705
|
-
metaDescription: "
|
|
1631
|
+
slug: "identify-hot-wheels-year",
|
|
1632
|
+
metaTitle: "How to Identify a Hot Wheels Car's Year | LetItRip FAQ",
|
|
1633
|
+
metaDescription: "How to read Hot Wheels card backs and casting bases to identify production year.",
|
|
1706
1634
|
},
|
|
1707
1635
|
isActive: true,
|
|
1708
1636
|
createdBy: "system",
|
|
1709
1637
|
},
|
|
1710
1638
|
{
|
|
1711
|
-
question: "
|
|
1712
|
-
answer: "
|
|
1713
|
-
category: "
|
|
1639
|
+
question: "Can I sell Hot Wheels on LetItRip even without a business GST registration?",
|
|
1640
|
+
answer: "<p>Yes. Individual collectors who do not hold a GST registration can sell on LetItRip as long as their annual turnover from the platform remains below the GST threshold (currently ₹20 lakh for most states). You will need to provide valid government-issued ID for KYC verification. We recommend consulting a CA if your sales volume grows beyond ₹10 lakh annually.</p>",
|
|
1641
|
+
category: "general",
|
|
1714
1642
|
showOnHomepage: false,
|
|
1715
1643
|
showInFooter: false,
|
|
1716
1644
|
isPinned: false,
|
|
1717
|
-
order:
|
|
1718
|
-
priority:
|
|
1719
|
-
tags: ["
|
|
1645
|
+
order: 11,
|
|
1646
|
+
priority: 6,
|
|
1647
|
+
tags: ["hot-wheels", "sell", "gst", "registration", "collector"],
|
|
1720
1648
|
relatedFAQs: [],
|
|
1721
|
-
useSiteSettings:
|
|
1722
|
-
|
|
1723
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1649
|
+
useSiteSettings: false,
|
|
1650
|
+
stats: { views: 340, helpful: 290, notHelpful: 14 },
|
|
1724
1651
|
seo: {
|
|
1725
|
-
slug: "
|
|
1726
|
-
metaTitle: "
|
|
1727
|
-
metaDescription: "
|
|
1652
|
+
slug: "sell-hot-wheels-without-gst",
|
|
1653
|
+
metaTitle: "Can I Sell Hot Wheels Without GST Registration? | LetItRip",
|
|
1654
|
+
metaDescription: "Individual collectors can sell Hot Wheels on LetItRip without GST registration up to the annual threshold.",
|
|
1728
1655
|
},
|
|
1729
1656
|
isActive: true,
|
|
1730
1657
|
createdBy: "system",
|
|
1731
1658
|
},
|
|
1732
|
-
//
|
|
1733
|
-
//
|
|
1734
|
-
//
|
|
1659
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1660
|
+
// BEYBLADE BURST — 10 FAQs
|
|
1661
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1735
1662
|
{
|
|
1736
|
-
question: "
|
|
1737
|
-
answer: "
|
|
1738
|
-
category: "
|
|
1663
|
+
question: "What are the four types of Beyblade Burst tops?",
|
|
1664
|
+
answer: "<p>Beyblade Burst tops come in four performance types: <ul><li><strong>Attack</strong> — high aggression, designed to knock opponents out of the stadium. Low stamina.</li><li><strong>Defense</strong> — designed to absorb hits and stay in the stadium. Heavy weight distribution.</li><li><strong>Stamina</strong> — designed to outlast opponents by spinning longer. Low aggression.</li><li><strong>Balance</strong> — mixed attributes covering attack, defense, and stamina. Versatile choice.</li></ul> Each top consists of three layers: Energy Layer, Forge Disc, and Performance Tip.</p>",
|
|
1665
|
+
category: "product_information",
|
|
1739
1666
|
showOnHomepage: false,
|
|
1740
1667
|
showInFooter: false,
|
|
1741
|
-
isPinned:
|
|
1668
|
+
isPinned: true,
|
|
1742
1669
|
order: 1,
|
|
1743
|
-
priority:
|
|
1744
|
-
tags: ["
|
|
1670
|
+
priority: 9,
|
|
1671
|
+
tags: ["beyblade", "attack", "defense", "stamina", "balance", "type"],
|
|
1745
1672
|
relatedFAQs: [],
|
|
1746
1673
|
useSiteSettings: false,
|
|
1747
|
-
|
|
1748
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1674
|
+
stats: { views: 780, helpful: 680, notHelpful: 25 },
|
|
1749
1675
|
seo: {
|
|
1750
|
-
slug: "
|
|
1751
|
-
metaTitle: "
|
|
1752
|
-
metaDescription: "
|
|
1676
|
+
slug: "beyblade-burst-types-explained",
|
|
1677
|
+
metaTitle: "Beyblade Burst Types Explained | LetItRip FAQ",
|
|
1678
|
+
metaDescription: "Attack, Defense, Stamina, and Balance — the four Beyblade Burst types explained.",
|
|
1753
1679
|
},
|
|
1754
1680
|
isActive: true,
|
|
1755
1681
|
createdBy: "system",
|
|
1756
1682
|
},
|
|
1757
1683
|
{
|
|
1758
|
-
question: "
|
|
1759
|
-
answer: "
|
|
1760
|
-
category: "
|
|
1761
|
-
showOnHomepage:
|
|
1684
|
+
question: "What Beyblade Burst series are available on LetItRip?",
|
|
1685
|
+
answer: "<p>We stock tops and accessories from all major Beyblade Burst series: <ul><li>Beyblade Burst (Classic / Original)</li><li>Beyblade Burst Evolution / God Layer</li><li>Beyblade Burst Turbo / Cho-Z</li><li>Beyblade Burst GT / Rise / Gachi</li><li>Beyblade Burst Superking / Sparking</li><li>Beyblade Burst QuadDrive</li><li>Beyblade Burst DB (Dynamite Battle) / MCC</li></ul> Series are not fully compatible — check the layer size and disc compatibility before purchasing parts from different series.</p>",
|
|
1686
|
+
category: "product_information",
|
|
1687
|
+
showOnHomepage: false,
|
|
1762
1688
|
showInFooter: false,
|
|
1763
1689
|
isPinned: false,
|
|
1764
1690
|
order: 2,
|
|
1765
1691
|
priority: 8,
|
|
1766
|
-
tags: ["
|
|
1692
|
+
tags: ["beyblade", "series", "classic", "turbo", "gt", "superking", "quaddrive"],
|
|
1767
1693
|
relatedFAQs: [],
|
|
1768
1694
|
useSiteSettings: false,
|
|
1769
|
-
|
|
1770
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1695
|
+
stats: { views: 530, helpful: 460, notHelpful: 18 },
|
|
1771
1696
|
seo: {
|
|
1772
|
-
slug: "
|
|
1773
|
-
metaTitle: "
|
|
1774
|
-
metaDescription: "
|
|
1697
|
+
slug: "beyblade-burst-series-guide",
|
|
1698
|
+
metaTitle: "Beyblade Burst Series Guide | LetItRip FAQ",
|
|
1699
|
+
metaDescription: "All Beyblade Burst series from Classic to DB/MCC — what's available on LetItRip.",
|
|
1775
1700
|
},
|
|
1776
1701
|
isActive: true,
|
|
1777
1702
|
createdBy: "system",
|
|
1778
1703
|
},
|
|
1779
1704
|
{
|
|
1780
|
-
question: "
|
|
1781
|
-
answer:
|
|
1782
|
-
category: "
|
|
1705
|
+
question: "Are different Beyblade Burst series compatible with each other?",
|
|
1706
|
+
answer: "<p>Compatibility depends on the layer size: <ul><li><strong>SwitchStrike / Cho-Z layers</strong> fit on SwitchStrike/Cho-Z discs and performance tips</li><li><strong>GT layers</strong> require GT Chip + Ring — not compatible with earlier layers</li><li><strong>Sparking/Superking</strong> layers and bases are generally compatible with Cho-Z and earlier discs/tips</li><li><strong>QuadDrive and MCC</strong> use a new unified base system incompatible with earlier series</li></ul> Always check the layer system before purchasing individual components for custom combinations.</p>",
|
|
1707
|
+
category: "product_information",
|
|
1783
1708
|
showOnHomepage: false,
|
|
1784
1709
|
showInFooter: false,
|
|
1785
1710
|
isPinned: false,
|
|
1786
1711
|
order: 3,
|
|
1787
|
-
priority:
|
|
1788
|
-
tags: ["
|
|
1712
|
+
priority: 7,
|
|
1713
|
+
tags: ["beyblade", "compatibility", "parts", "series", "custom"],
|
|
1789
1714
|
relatedFAQs: [],
|
|
1790
1715
|
useSiteSettings: false,
|
|
1791
|
-
|
|
1792
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1716
|
+
stats: { views: 480, helpful: 400, notHelpful: 22 },
|
|
1793
1717
|
seo: {
|
|
1794
|
-
slug: "
|
|
1795
|
-
metaTitle: "
|
|
1796
|
-
metaDescription: "
|
|
1718
|
+
slug: "beyblade-burst-parts-compatibility",
|
|
1719
|
+
metaTitle: "Are Beyblade Burst Parts Compatible Across Series? | FAQ",
|
|
1720
|
+
metaDescription: "Guide to Beyblade Burst cross-series parts compatibility by layer system.",
|
|
1797
1721
|
},
|
|
1798
1722
|
isActive: true,
|
|
1799
1723
|
createdBy: "system",
|
|
1800
1724
|
},
|
|
1801
1725
|
{
|
|
1802
|
-
question: "
|
|
1803
|
-
answer:
|
|
1804
|
-
category: "
|
|
1726
|
+
question: "What is a Beyblade Burst Stadium and which one should I buy?",
|
|
1727
|
+
answer: "<p>A Beyblade Burst Stadium (or Battle Stadium) is the arena in which Beyblades battle. Key considerations: <ul><li><strong>Attack Stadiums</strong> — aggressive pocket design that throws tops out easily. Great for Attack-type battles.</li><li><strong>Standard Stadiums</strong> — balanced pocket depths for all type battles. Good for beginners.</li><li><strong>Hypersphere/Xtend+</strong> — wall stadiums where tops can travel vertically, unique to certain series</li></ul> For casual play, start with the standard stadium included in dual-pack or entry-level sets.</p>",
|
|
1728
|
+
category: "product_information",
|
|
1805
1729
|
showOnHomepage: false,
|
|
1806
1730
|
showInFooter: false,
|
|
1807
1731
|
isPinned: false,
|
|
1808
1732
|
order: 4,
|
|
1809
|
-
priority:
|
|
1810
|
-
tags: ["
|
|
1733
|
+
priority: 7,
|
|
1734
|
+
tags: ["beyblade", "stadium", "battle-stadium", "guide", "buy"],
|
|
1811
1735
|
relatedFAQs: [],
|
|
1812
1736
|
useSiteSettings: false,
|
|
1813
|
-
|
|
1814
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1737
|
+
stats: { views: 410, helpful: 350, notHelpful: 16 },
|
|
1815
1738
|
seo: {
|
|
1816
|
-
slug: "
|
|
1817
|
-
metaTitle: "
|
|
1818
|
-
metaDescription: "
|
|
1739
|
+
slug: "beyblade-burst-stadium-guide",
|
|
1740
|
+
metaTitle: "Which Beyblade Stadium Should I Buy? | LetItRip FAQ",
|
|
1741
|
+
metaDescription: "Guide to Beyblade Burst stadiums — types, differences, and beginner recommendations.",
|
|
1819
1742
|
},
|
|
1820
1743
|
isActive: true,
|
|
1821
1744
|
createdBy: "system",
|
|
1822
1745
|
},
|
|
1823
1746
|
{
|
|
1824
|
-
question: "
|
|
1825
|
-
answer: "
|
|
1826
|
-
category: "
|
|
1747
|
+
question: "Are Takara Tomy Beyblades different from Hasbro Beyblades?",
|
|
1748
|
+
answer: "<p>Yes, there are meaningful differences: <ul><li><strong>Takara Tomy (Japan/Asia)</strong> — original manufacturer. Generally higher quality plastic, more consistent performance, considered the 'authentic' competitive version.</li><li><strong>Hasbro (US/International)</strong> — licensed versions with some modified parts and packaging for Western markets. Usually lighter plastic, slight performance differences.</li></ul> Both are physically compatible in most series. Competitive players generally prefer Takara Tomy. All listings on LetItRip specify the manufacturer.</p>",
|
|
1749
|
+
category: "product_information",
|
|
1827
1750
|
showOnHomepage: false,
|
|
1828
1751
|
showInFooter: false,
|
|
1829
1752
|
isPinned: false,
|
|
1830
1753
|
order: 5,
|
|
1831
|
-
priority:
|
|
1832
|
-
tags: ["
|
|
1754
|
+
priority: 8,
|
|
1755
|
+
tags: ["beyblade", "takara-tomy", "hasbro", "difference", "competitive"],
|
|
1833
1756
|
relatedFAQs: [],
|
|
1834
1757
|
useSiteSettings: false,
|
|
1835
|
-
|
|
1836
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1758
|
+
stats: { views: 620, helpful: 540, notHelpful: 20 },
|
|
1837
1759
|
seo: {
|
|
1838
|
-
slug: "
|
|
1839
|
-
metaTitle: "
|
|
1840
|
-
metaDescription: "
|
|
1760
|
+
slug: "takara-tomy-vs-hasbro-beyblade",
|
|
1761
|
+
metaTitle: "Takara Tomy vs Hasbro Beyblade — What's the Difference? | FAQ",
|
|
1762
|
+
metaDescription: "Compare Takara Tomy and Hasbro Beyblade Burst: quality, performance, and compatibility.",
|
|
1841
1763
|
},
|
|
1842
1764
|
isActive: true,
|
|
1843
1765
|
createdBy: "system",
|
|
1844
1766
|
},
|
|
1845
1767
|
{
|
|
1846
|
-
question: "
|
|
1847
|
-
answer:
|
|
1848
|
-
category: "
|
|
1768
|
+
question: "What launcher do I need for Beyblade Burst?",
|
|
1769
|
+
answer: "<p>Beyblade Burst uses two types of launchers: <ul><li><strong>String Launcher (LR)</strong> — pull-string launch, suitable for all types. Higher spin speed.</li><li><strong>Grip Launcher</strong> — rip-cord mechanism, comes with most starter packs</li></ul> String launchers with a <strong>left-spin (L) or right-spin (R) setting</strong> are recommended for competitive play since some tops have a specific spin direction. Check the spin direction of your top before purchasing a launcher — most tops are right-spin unless labelled 'L' or 'LR'.</p>",
|
|
1770
|
+
category: "product_information",
|
|
1849
1771
|
showOnHomepage: false,
|
|
1850
1772
|
showInFooter: false,
|
|
1851
1773
|
isPinned: false,
|
|
1852
1774
|
order: 6,
|
|
1853
|
-
priority:
|
|
1854
|
-
tags: ["
|
|
1775
|
+
priority: 6,
|
|
1776
|
+
tags: ["beyblade", "launcher", "string-launcher", "grip", "spin-direction"],
|
|
1855
1777
|
relatedFAQs: [],
|
|
1856
1778
|
useSiteSettings: false,
|
|
1857
|
-
|
|
1858
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1779
|
+
stats: { views: 460, helpful: 390, notHelpful: 18 },
|
|
1859
1780
|
seo: {
|
|
1860
|
-
slug: "
|
|
1861
|
-
metaTitle: "
|
|
1862
|
-
metaDescription: "
|
|
1781
|
+
slug: "beyblade-burst-launcher-guide",
|
|
1782
|
+
metaTitle: "Which Beyblade Burst Launcher Do I Need? | LetItRip FAQ",
|
|
1783
|
+
metaDescription: "String vs grip launcher for Beyblade Burst — and how spin direction matters.",
|
|
1863
1784
|
},
|
|
1864
1785
|
isActive: true,
|
|
1865
1786
|
createdBy: "system",
|
|
1866
1787
|
},
|
|
1867
1788
|
{
|
|
1868
|
-
question: "What
|
|
1869
|
-
answer: "
|
|
1870
|
-
category: "
|
|
1789
|
+
question: "What does 'Burst' mean in Beyblade Burst?",
|
|
1790
|
+
answer: "<p>A 'Burst' occurs when a Beyblade's Energy Layer separates from the Disc and Tip mid-battle due to impact or a locking ratchet being defeated. Bursting a Beyblade counts for 2 points (vs. 1 point for a ring-out). The Burst mechanic introduces a risk/reward system — aggressive Attack types can force bursts but are also vulnerable to bursting themselves. The Burst Stop system on some tops (e.g., Orbit tips) reduces burst risk.</p>",
|
|
1791
|
+
category: "product_information",
|
|
1871
1792
|
showOnHomepage: false,
|
|
1872
1793
|
showInFooter: false,
|
|
1873
1794
|
isPinned: false,
|
|
1874
1795
|
order: 7,
|
|
1875
|
-
priority:
|
|
1876
|
-
tags: ["
|
|
1796
|
+
priority: 7,
|
|
1797
|
+
tags: ["beyblade", "burst", "mechanic", "how-it-works", "scoring"],
|
|
1877
1798
|
relatedFAQs: [],
|
|
1878
1799
|
useSiteSettings: false,
|
|
1879
|
-
|
|
1880
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1800
|
+
stats: { views: 540, helpful: 460, notHelpful: 20 },
|
|
1881
1801
|
seo: {
|
|
1882
|
-
slug: "
|
|
1883
|
-
metaTitle: "
|
|
1884
|
-
metaDescription: "
|
|
1802
|
+
slug: "what-is-beyblade-burst-mechanic",
|
|
1803
|
+
metaTitle: "What Does 'Burst' Mean in Beyblade? | LetItRip FAQ",
|
|
1804
|
+
metaDescription: "The burst mechanic explained — what happens when a Beyblade bursts and how scoring works.",
|
|
1885
1805
|
},
|
|
1886
1806
|
isActive: true,
|
|
1887
1807
|
createdBy: "system",
|
|
1888
1808
|
},
|
|
1889
1809
|
{
|
|
1890
|
-
question: "How do I
|
|
1891
|
-
answer:
|
|
1892
|
-
category: "
|
|
1810
|
+
question: "How do I clean and maintain Beyblade Burst performance tips?",
|
|
1811
|
+
answer: "<p>Performance tip maintenance: <ul><li>After each battle session, wipe tips clean with a soft cloth — dust causes wobble</li><li>Rubber tips (Xtend, Orbit, Meteo) can be cleaned with isopropyl alcohol on a cotton swab</li><li>Plastic tips need no lubrication — DO NOT apply oil or grease as it increases friction unevenly</li><li>Worn rubber tips can be replaced (sold separately on LetItRip) — rubber degrades after heavy use</li><li>Store Beyblades disassembled to avoid deforming the teeth (ratchet) mechanism</li></ul></p>",
|
|
1812
|
+
category: "product_information",
|
|
1893
1813
|
showOnHomepage: false,
|
|
1894
1814
|
showInFooter: false,
|
|
1895
1815
|
isPinned: false,
|
|
1896
1816
|
order: 8,
|
|
1897
1817
|
priority: 5,
|
|
1898
|
-
tags: ["
|
|
1818
|
+
tags: ["beyblade", "maintenance", "clean", "tip", "rubber"],
|
|
1899
1819
|
relatedFAQs: [],
|
|
1900
1820
|
useSiteSettings: false,
|
|
1901
|
-
|
|
1902
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1821
|
+
stats: { views: 320, helpful: 270, notHelpful: 14 },
|
|
1903
1822
|
seo: {
|
|
1904
|
-
slug: "
|
|
1905
|
-
metaTitle: "
|
|
1906
|
-
metaDescription: "
|
|
1823
|
+
slug: "beyblade-tip-maintenance",
|
|
1824
|
+
metaTitle: "How to Maintain Beyblade Burst Tips | LetItRip FAQ",
|
|
1825
|
+
metaDescription: "Cleaning and maintaining Beyblade Burst performance tips to preserve spinning performance.",
|
|
1907
1826
|
},
|
|
1908
1827
|
isActive: true,
|
|
1909
1828
|
createdBy: "system",
|
|
1910
1829
|
},
|
|
1911
1830
|
{
|
|
1912
|
-
question: "What is
|
|
1913
|
-
answer: "
|
|
1914
|
-
category: "
|
|
1831
|
+
question: "What age is Beyblade Burst suitable for?",
|
|
1832
|
+
answer: "<p>Beyblade Burst is officially rated for ages <strong>8 and above</strong> by Takara Tomy and Hasbro. The small parts (metal discs, performance tips) can be a choking hazard for children under 3. String launchers require some hand coordination and strength, which makes 6+ a practical lower limit. For competitive battling, children aged 8–12 pick up the rules quickly. There is no upper age limit — Beyblade has a large adult collector and competitive community.</p>",
|
|
1833
|
+
category: "product_information",
|
|
1915
1834
|
showOnHomepage: false,
|
|
1916
1835
|
showInFooter: false,
|
|
1917
1836
|
isPinned: false,
|
|
1918
1837
|
order: 9,
|
|
1919
|
-
priority:
|
|
1920
|
-
tags: ["
|
|
1838
|
+
priority: 4,
|
|
1839
|
+
tags: ["beyblade", "age", "rating", "kids", "suitable"],
|
|
1921
1840
|
relatedFAQs: [],
|
|
1922
1841
|
useSiteSettings: false,
|
|
1923
|
-
|
|
1924
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1842
|
+
stats: { views: 290, helpful: 250, notHelpful: 10 },
|
|
1925
1843
|
seo: {
|
|
1926
|
-
slug: "
|
|
1927
|
-
metaTitle: "
|
|
1928
|
-
metaDescription: "
|
|
1844
|
+
slug: "beyblade-burst-age-rating",
|
|
1845
|
+
metaTitle: "What Age is Beyblade Burst Suitable For? | LetItRip FAQ",
|
|
1846
|
+
metaDescription: "Beyblade Burst age rating and safety information for children and adult collectors.",
|
|
1929
1847
|
},
|
|
1930
1848
|
isActive: true,
|
|
1931
1849
|
createdBy: "system",
|
|
1932
1850
|
},
|
|
1933
1851
|
{
|
|
1934
|
-
question: "
|
|
1935
|
-
answer: "
|
|
1936
|
-
category: "
|
|
1852
|
+
question: "What is the difference between a Beyblade 'Random Booster' and a 'Starter'?",
|
|
1853
|
+
answer: "<p><strong>Starters</strong> contain a single, specific Beyblade top with a launcher — you know exactly what you're getting. <strong>Random Boosters</strong> (also called 'blind bag boosters') contain one of several possible tops — you don't know which until you open it. Random Boosters are typically cheaper per top but introduce randomness. Competitive players often prefer Starters for known meta-relevant tops, while casual collectors enjoy the surprise element of Random Boosters.</p>",
|
|
1854
|
+
category: "product_information",
|
|
1937
1855
|
showOnHomepage: false,
|
|
1938
1856
|
showInFooter: false,
|
|
1939
1857
|
isPinned: false,
|
|
1940
1858
|
order: 10,
|
|
1941
|
-
priority:
|
|
1942
|
-
tags: ["
|
|
1859
|
+
priority: 6,
|
|
1860
|
+
tags: ["beyblade", "random-booster", "starter", "blind-bag", "difference"],
|
|
1943
1861
|
relatedFAQs: [],
|
|
1944
1862
|
useSiteSettings: false,
|
|
1945
|
-
|
|
1946
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1863
|
+
stats: { views: 380, helpful: 320, notHelpful: 16 },
|
|
1947
1864
|
seo: {
|
|
1948
|
-
slug: "
|
|
1949
|
-
metaTitle: "
|
|
1950
|
-
metaDescription: "
|
|
1865
|
+
slug: "beyblade-random-booster-vs-starter",
|
|
1866
|
+
metaTitle: "Beyblade Random Booster vs Starter — What's the Difference? | FAQ",
|
|
1867
|
+
metaDescription: "Compare Beyblade Burst Starters and Random Boosters to choose the right purchase.",
|
|
1951
1868
|
},
|
|
1952
1869
|
isActive: true,
|
|
1953
1870
|
createdBy: "system",
|
|
1954
1871
|
},
|
|
1872
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1873
|
+
// TRANSFORMERS — 8 FAQs
|
|
1874
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1955
1875
|
{
|
|
1956
|
-
question: "
|
|
1957
|
-
answer: "We
|
|
1958
|
-
category: "
|
|
1876
|
+
question: "What are the main Transformers toy lines available on LetItRip?",
|
|
1877
|
+
answer: "<p>We stock multiple Transformers lines: <ul><li><strong>Studio Series</strong> — movie-accurate figures from live-action films, highly detailed</li><li><strong>Masterpiece (MP)</strong> — premium collector-grade figures with maximum accuracy to G1 cartoon/comic designs</li><li><strong>Legacy</strong> — homage to classic G1 characters with modern engineering</li><li><strong>Kingdom / War for Cybertron</strong> — G1 designs with battle-damage features</li><li><strong>G1 Vintage (re-issues)</strong> — reissues of original 1984–86 toy designs</li><li><strong>Siege</strong> — Cybertronian mode versions of classic characters</li></ul></p>",
|
|
1878
|
+
category: "product_information",
|
|
1959
1879
|
showOnHomepage: false,
|
|
1960
1880
|
showInFooter: false,
|
|
1961
|
-
isPinned:
|
|
1962
|
-
order:
|
|
1963
|
-
priority:
|
|
1964
|
-
tags: ["
|
|
1881
|
+
isPinned: true,
|
|
1882
|
+
order: 1,
|
|
1883
|
+
priority: 8,
|
|
1884
|
+
tags: ["transformers", "studio-series", "masterpiece", "legacy", "g1", "line"],
|
|
1965
1885
|
relatedFAQs: [],
|
|
1966
1886
|
useSiteSettings: false,
|
|
1967
|
-
|
|
1968
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1887
|
+
stats: { views: 540, helpful: 460, notHelpful: 20 },
|
|
1969
1888
|
seo: {
|
|
1970
|
-
slug: "
|
|
1971
|
-
metaTitle: "
|
|
1972
|
-
metaDescription: "
|
|
1889
|
+
slug: "transformers-toy-lines-guide",
|
|
1890
|
+
metaTitle: "Transformers Toy Lines Available on LetItRip | FAQ",
|
|
1891
|
+
metaDescription: "Overview of Transformers toy lines — Studio Series, Masterpiece, Legacy, G1 and more.",
|
|
1973
1892
|
},
|
|
1974
1893
|
isActive: true,
|
|
1975
1894
|
createdBy: "system",
|
|
1976
1895
|
},
|
|
1977
1896
|
{
|
|
1978
|
-
question: "What
|
|
1979
|
-
answer: "
|
|
1980
|
-
category: "
|
|
1897
|
+
question: "What does 'MISB' mean for Transformers figures?",
|
|
1898
|
+
answer: "<p><strong>MISB</strong> stands for <em>Mint in Sealed Box</em> — the figure is in its original factory-sealed packaging, never opened. This is the highest condition grade for boxed Transformers. Other common grades: <ul><li><strong>MIB</strong> — Mint in Box (box opened but figure unused)</li><li><strong>MOSC</strong> — Mint on Sealed Card (for smaller carded figures)</li><li><strong>C9/C9.5</strong> — Collector's grade condition scale (C10 = perfect)</li><li><strong>Loose/Complete</strong> — figure removed from packaging, all accessories present</li></ul></p>",
|
|
1899
|
+
category: "product_information",
|
|
1981
1900
|
showOnHomepage: false,
|
|
1982
1901
|
showInFooter: false,
|
|
1983
1902
|
isPinned: false,
|
|
1984
|
-
order:
|
|
1985
|
-
priority:
|
|
1986
|
-
tags: ["
|
|
1903
|
+
order: 2,
|
|
1904
|
+
priority: 8,
|
|
1905
|
+
tags: ["transformers", "misb", "mib", "condition", "grading", "sealed"],
|
|
1987
1906
|
relatedFAQs: [],
|
|
1988
1907
|
useSiteSettings: false,
|
|
1989
|
-
|
|
1990
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1908
|
+
stats: { views: 480, helpful: 420, notHelpful: 16 },
|
|
1991
1909
|
seo: {
|
|
1992
|
-
slug: "
|
|
1993
|
-
metaTitle: "
|
|
1994
|
-
metaDescription: "
|
|
1910
|
+
slug: "transformers-misb-condition-grades",
|
|
1911
|
+
metaTitle: "What Does MISB Mean for Transformers? | LetItRip FAQ",
|
|
1912
|
+
metaDescription: "MISB, MIB, and collector condition grades explained for Transformers figures.",
|
|
1995
1913
|
},
|
|
1996
1914
|
isActive: true,
|
|
1997
1915
|
createdBy: "system",
|
|
1998
1916
|
},
|
|
1999
1917
|
{
|
|
2000
|
-
question: "
|
|
2001
|
-
answer:
|
|
2002
|
-
category: "
|
|
1918
|
+
question: "What is the difference between Autobots and Decepticons?",
|
|
1919
|
+
answer: "<p>In the Transformers franchise, the two main factions are: <ul><li><strong>Autobots</strong> — led by Optimus Prime. Generally the heroic faction, dedicated to protecting life and freedom. Classic Autobots include Optimus Prime, Bumblebee, Jazz, Ironhide, Ratchet, and the Dinobots.</li><li><strong>Decepticons</strong> — led by Megatron (later Galvatron). The villainous faction seeking Energon and conquest. Classic Decepticons include Megatron, Starscream, Soundwave, Shockwave, and the Constructicons.</li></ul> Most Transformers toy lines are divided between these two factions.</p>",
|
|
1920
|
+
category: "product_information",
|
|
2003
1921
|
showOnHomepage: false,
|
|
2004
1922
|
showInFooter: false,
|
|
2005
1923
|
isPinned: false,
|
|
2006
|
-
order:
|
|
2007
|
-
priority:
|
|
2008
|
-
tags: ["
|
|
1924
|
+
order: 3,
|
|
1925
|
+
priority: 5,
|
|
1926
|
+
tags: ["transformers", "autobots", "decepticons", "factions", "lore"],
|
|
2009
1927
|
relatedFAQs: [],
|
|
2010
1928
|
useSiteSettings: false,
|
|
2011
|
-
|
|
2012
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1929
|
+
stats: { views: 420, helpful: 360, notHelpful: 14 },
|
|
2013
1930
|
seo: {
|
|
2014
|
-
slug: "
|
|
2015
|
-
metaTitle: "
|
|
2016
|
-
metaDescription: "
|
|
1931
|
+
slug: "autobots-vs-decepticons-explained",
|
|
1932
|
+
metaTitle: "Autobots vs Decepticons — What's the Difference? | FAQ",
|
|
1933
|
+
metaDescription: "The two main Transformers factions explained for new collectors and fans.",
|
|
2017
1934
|
},
|
|
2018
1935
|
isActive: true,
|
|
2019
1936
|
createdBy: "system",
|
|
2020
1937
|
},
|
|
2021
1938
|
{
|
|
2022
|
-
question: "
|
|
2023
|
-
answer:
|
|
2024
|
-
category: "
|
|
1939
|
+
question: "Are G1 Transformers toys safe and lead-free?",
|
|
1940
|
+
answer: "<p>Original G1 Transformers (1984–1990) were manufactured before modern lead-free toy standards. Some G1 paint formulations from that era may contain lead-based pigments. While the lead risk from casual handling is low, we recommend: <ul><li>Not allowing young children to mouth or chew vintage figures</li><li>Washing hands after extended handling of vintage figures</li><li>Keeping vintage toys on display rather than as play toys for children under 12</li></ul> Hasbro post-2000 and all current production figures comply with modern safety standards.</p>",
|
|
1941
|
+
category: "product_information",
|
|
2025
1942
|
showOnHomepage: false,
|
|
2026
1943
|
showInFooter: false,
|
|
2027
1944
|
isPinned: false,
|
|
2028
|
-
order:
|
|
2029
|
-
priority:
|
|
2030
|
-
tags: ["
|
|
1945
|
+
order: 4,
|
|
1946
|
+
priority: 6,
|
|
1947
|
+
tags: ["transformers", "g1", "safety", "lead", "vintage", "children"],
|
|
2031
1948
|
relatedFAQs: [],
|
|
2032
|
-
useSiteSettings:
|
|
2033
|
-
|
|
2034
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1949
|
+
useSiteSettings: false,
|
|
1950
|
+
stats: { views: 310, helpful: 270, notHelpful: 12 },
|
|
2035
1951
|
seo: {
|
|
2036
|
-
slug: "
|
|
2037
|
-
metaTitle: "
|
|
2038
|
-
metaDescription: "
|
|
1952
|
+
slug: "g1-transformers-safety-lead",
|
|
1953
|
+
metaTitle: "Are G1 Transformers Safe? Lead Paint & Age Safety | FAQ",
|
|
1954
|
+
metaDescription: "Safety information about vintage G1 Transformers toys and modern compliance.",
|
|
2039
1955
|
},
|
|
2040
1956
|
isActive: true,
|
|
2041
1957
|
createdBy: "system",
|
|
2042
1958
|
},
|
|
2043
1959
|
{
|
|
2044
|
-
question: "
|
|
2045
|
-
answer:
|
|
2046
|
-
category: "
|
|
1960
|
+
question: "What is a Combiner / Gestalt Transformer?",
|
|
1961
|
+
answer: "<p>Combiners (or Gestalts) are teams of Transformers that physically combine to form one giant robot. Famous examples include <strong>Devastator</strong> (6 Constructicons), <strong>Superion</strong> (5 Aerialbots), and <strong>Menasor</strong> (5 Stunticons). Combiner sets on LetItRip are usually sold as complete team bundles with all figures needed to form the combined mode. Individual members are also sometimes available separately. Combiner engineering varies by line — modern Combiner Wars figures have improved stability vs. vintage G1.</p>",
|
|
1962
|
+
category: "product_information",
|
|
2047
1963
|
showOnHomepage: false,
|
|
2048
1964
|
showInFooter: false,
|
|
2049
1965
|
isPinned: false,
|
|
2050
|
-
order:
|
|
2051
|
-
priority:
|
|
2052
|
-
tags: ["
|
|
1966
|
+
order: 5,
|
|
1967
|
+
priority: 6,
|
|
1968
|
+
tags: ["transformers", "combiner", "gestalt", "devastator", "superion"],
|
|
2053
1969
|
relatedFAQs: [],
|
|
2054
1970
|
useSiteSettings: false,
|
|
2055
|
-
|
|
2056
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1971
|
+
stats: { views: 380, helpful: 320, notHelpful: 14 },
|
|
2057
1972
|
seo: {
|
|
2058
|
-
slug: "
|
|
2059
|
-
metaTitle: "
|
|
2060
|
-
metaDescription: "
|
|
1973
|
+
slug: "transformers-combiner-gestalt-guide",
|
|
1974
|
+
metaTitle: "What is a Combiner Transformer? | LetItRip FAQ",
|
|
1975
|
+
metaDescription: "Combiner and Gestalt Transformers explained — what they are and how they combine.",
|
|
2061
1976
|
},
|
|
2062
1977
|
isActive: true,
|
|
2063
1978
|
createdBy: "system",
|
|
2064
1979
|
},
|
|
2065
|
-
// ============================================
|
|
2066
|
-
// SELLERS (12 FAQs)
|
|
2067
|
-
// ============================================
|
|
2068
1980
|
{
|
|
2069
|
-
question: "How do I
|
|
2070
|
-
answer:
|
|
2071
|
-
category: "
|
|
1981
|
+
question: "How do I know if a Transformers figure is official Hasbro or a KO (knock-off)?",
|
|
1982
|
+
answer: "<p>Authentic Hasbro/Takara Tomy figures can be identified by: <ul><li>Hasbro or Takara copyright stamp on the figure (usually on underside or leg)</li><li>Quality of plastic — KOs often use brittle, chalky plastic</li><li>Tight transformation joints — KOs are often loose or snapping</li><li>Packaging barcode validity (search the barcode online)</li><li>Price — unusually cheap 'Studio Series' is a red flag</li></ul> All sellers on LetItRip who list Transformers must provide proof of purchase. Report suspected KOs via our report button.</p>",
|
|
1983
|
+
category: "product_information",
|
|
2072
1984
|
showOnHomepage: false,
|
|
2073
|
-
showInFooter:
|
|
1985
|
+
showInFooter: false,
|
|
2074
1986
|
isPinned: false,
|
|
2075
|
-
order:
|
|
1987
|
+
order: 6,
|
|
2076
1988
|
priority: 8,
|
|
2077
|
-
tags: ["
|
|
1989
|
+
tags: ["transformers", "knock-off", "ko", "authentic", "identify", "fake"],
|
|
2078
1990
|
relatedFAQs: [],
|
|
2079
1991
|
useSiteSettings: false,
|
|
2080
|
-
|
|
2081
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1992
|
+
stats: { views: 560, helpful: 480, notHelpful: 20 },
|
|
2082
1993
|
seo: {
|
|
2083
|
-
slug: "
|
|
2084
|
-
metaTitle: "
|
|
2085
|
-
metaDescription: "
|
|
1994
|
+
slug: "identify-transformers-knock-off",
|
|
1995
|
+
metaTitle: "How to Spot a Fake Transformers Figure (KO) | LetItRip FAQ",
|
|
1996
|
+
metaDescription: "Tips to identify authentic Hasbro Transformers vs knock-off (KO) figures.",
|
|
2086
1997
|
},
|
|
2087
1998
|
isActive: true,
|
|
2088
1999
|
createdBy: "system",
|
|
2089
2000
|
},
|
|
2090
2001
|
{
|
|
2091
|
-
question: "What
|
|
2092
|
-
answer: "
|
|
2093
|
-
category: "
|
|
2002
|
+
question: "What size classes do Transformers figures come in?",
|
|
2003
|
+
answer: "<p>Current Transformers lines use these size classes (smallest to largest): <ul><li><strong>Core Class</strong> — small, ~10 cm, budget figures</li><li><strong>Deluxe Class</strong> — ~14 cm, most common size, good detail</li><li><strong>Voyager Class</strong> — ~18 cm, more complex transformation</li><li><strong>Leader Class</strong> — ~22 cm, premium figures with light/sound in some lines</li><li><strong>Commander Class</strong> — ~28 cm, top-tier figures</li><li><strong>Titan Class</strong> — 60+ cm, city-sized figures (e.g., Metroplex, Fortress Maximus)</li></ul> All listings on LetItRip specify the size class.</p>",
|
|
2004
|
+
category: "product_information",
|
|
2094
2005
|
showOnHomepage: false,
|
|
2095
2006
|
showInFooter: false,
|
|
2096
2007
|
isPinned: false,
|
|
2097
|
-
order:
|
|
2098
|
-
priority:
|
|
2099
|
-
tags: ["
|
|
2008
|
+
order: 7,
|
|
2009
|
+
priority: 6,
|
|
2010
|
+
tags: ["transformers", "size-class", "deluxe", "voyager", "leader", "titan"],
|
|
2100
2011
|
relatedFAQs: [],
|
|
2101
2012
|
useSiteSettings: false,
|
|
2102
|
-
|
|
2103
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2013
|
+
stats: { views: 440, helpful: 380, notHelpful: 16 },
|
|
2104
2014
|
seo: {
|
|
2105
|
-
slug: "
|
|
2106
|
-
metaTitle: "
|
|
2107
|
-
metaDescription: "
|
|
2015
|
+
slug: "transformers-size-classes-guide",
|
|
2016
|
+
metaTitle: "Transformers Figure Size Classes Explained | LetItRip FAQ",
|
|
2017
|
+
metaDescription: "Core, Deluxe, Voyager, Leader, Commander, Titan — all Transformers size classes explained.",
|
|
2108
2018
|
},
|
|
2109
2019
|
isActive: true,
|
|
2110
2020
|
createdBy: "system",
|
|
2111
2021
|
},
|
|
2112
2022
|
{
|
|
2113
|
-
question: "
|
|
2114
|
-
answer: '
|
|
2115
|
-
category: "
|
|
2023
|
+
question: "Can I return a Transformers figure if the transformation is too difficult?",
|
|
2024
|
+
answer: "<p>Returns based on 'too difficult to transform' are not covered under our standard return policy — complex transformation is a feature of the product, not a defect. However, if a joint is broken at arrival, a peg is snapped, or a part is missing, this qualifies as a defective item and is eligible for return or replacement within the seller's return window. Always record an unboxing video for high-value figures to document condition on arrival. Reach out to the seller first; escalate to LetItRip support if unresolved.</p>",
|
|
2025
|
+
category: "returns_refunds",
|
|
2116
2026
|
showOnHomepage: false,
|
|
2117
2027
|
showInFooter: false,
|
|
2118
2028
|
isPinned: false,
|
|
2119
|
-
order:
|
|
2120
|
-
priority:
|
|
2121
|
-
tags: ["
|
|
2029
|
+
order: 11,
|
|
2030
|
+
priority: 6,
|
|
2031
|
+
tags: ["transformers", "return", "defective", "transformation", "difficult"],
|
|
2122
2032
|
relatedFAQs: [],
|
|
2123
2033
|
useSiteSettings: false,
|
|
2124
|
-
|
|
2125
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2034
|
+
stats: { views: 280, helpful: 240, notHelpful: 20 },
|
|
2126
2035
|
seo: {
|
|
2127
|
-
slug: "
|
|
2128
|
-
metaTitle: "
|
|
2129
|
-
metaDescription: "
|
|
2036
|
+
slug: "transformers-return-difficult-transformation",
|
|
2037
|
+
metaTitle: "Can I Return a Transformers Figure if Hard to Transform? | FAQ",
|
|
2038
|
+
metaDescription: "Return eligibility for Transformers figures — defects vs difficulty level.",
|
|
2130
2039
|
},
|
|
2131
2040
|
isActive: true,
|
|
2132
2041
|
createdBy: "system",
|
|
2133
2042
|
},
|
|
2043
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
2044
|
+
// SELLERS & STORES — 8 additional FAQs
|
|
2045
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
2134
2046
|
{
|
|
2135
|
-
question: "
|
|
2136
|
-
answer: "
|
|
2137
|
-
category: "
|
|
2138
|
-
showOnHomepage:
|
|
2047
|
+
question: "How do I open a store on LetItRip?",
|
|
2048
|
+
answer: "<p>To open a store: <ol><li>Create an account and complete email verification</li><li>Navigate to <strong>Dashboard → Become a Seller</strong></li><li>Complete KYC: upload government ID and a selfie for verification</li><li>Set up your store profile — name, logo, banner, bio, and location</li><li>Add your first product listing</li><li>Once approved by our team (usually within 24 hours), your store goes live</li></ol> Stores are free to open. Platform fees apply per sale (see our fee schedule).</p>",
|
|
2049
|
+
category: "general",
|
|
2050
|
+
showOnHomepage: true,
|
|
2139
2051
|
showInFooter: false,
|
|
2140
|
-
isPinned:
|
|
2141
|
-
order:
|
|
2142
|
-
priority:
|
|
2143
|
-
tags: ["
|
|
2052
|
+
isPinned: true,
|
|
2053
|
+
order: 12,
|
|
2054
|
+
priority: 9,
|
|
2055
|
+
tags: ["seller", "store", "open", "kyc", "how-to", "dashboard"],
|
|
2144
2056
|
relatedFAQs: [],
|
|
2145
2057
|
useSiteSettings: false,
|
|
2146
|
-
|
|
2147
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2058
|
+
stats: { views: 920, helpful: 810, notHelpful: 28 },
|
|
2148
2059
|
seo: {
|
|
2149
|
-
slug: "
|
|
2150
|
-
metaTitle: "
|
|
2151
|
-
metaDescription: "
|
|
2060
|
+
slug: "how-to-open-store-letitrip",
|
|
2061
|
+
metaTitle: "How to Open a Store on LetItRip | Seller Guide",
|
|
2062
|
+
metaDescription: "Step-by-step guide to opening a collectibles store on LetItRip marketplace.",
|
|
2152
2063
|
},
|
|
2153
2064
|
isActive: true,
|
|
2154
2065
|
createdBy: "system",
|
|
2155
2066
|
},
|
|
2156
2067
|
{
|
|
2157
|
-
question: "
|
|
2158
|
-
answer:
|
|
2159
|
-
category: "
|
|
2068
|
+
question: "What are LetItRip's seller fees?",
|
|
2069
|
+
answer: "<p>LetItRip charges the following fees to sellers: <ul><li><strong>Listing fee</strong>: Free (no charge to list)</li><li><strong>Transaction fee</strong>: 5% of the sale price on completed orders</li><li><strong>Payment processing</strong>: 2% + GST (passed through from payment gateway)</li><li><strong>Promoted listing fee</strong>: ₹99–₹499 per 7-day promotion window (optional)</li></ul> No subscription fee. Fees are automatically deducted before payout. Full fee schedule available in the Seller Help Centre.</p>",
|
|
2070
|
+
category: "general",
|
|
2160
2071
|
showOnHomepage: false,
|
|
2161
2072
|
showInFooter: false,
|
|
2162
2073
|
isPinned: false,
|
|
2163
|
-
order:
|
|
2164
|
-
priority:
|
|
2165
|
-
tags: ["
|
|
2074
|
+
order: 13,
|
|
2075
|
+
priority: 8,
|
|
2076
|
+
tags: ["seller", "fees", "commission", "listing", "transaction"],
|
|
2166
2077
|
relatedFAQs: [],
|
|
2167
2078
|
useSiteSettings: false,
|
|
2168
|
-
|
|
2169
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2079
|
+
stats: { views: 740, helpful: 650, notHelpful: 30 },
|
|
2170
2080
|
seo: {
|
|
2171
|
-
slug: "
|
|
2172
|
-
metaTitle: "
|
|
2173
|
-
metaDescription: "
|
|
2081
|
+
slug: "letitrip-seller-fees",
|
|
2082
|
+
metaTitle: "LetItRip Seller Fees & Commission Structure | FAQ",
|
|
2083
|
+
metaDescription: "Complete breakdown of seller fees on LetItRip — listing, transaction, and payment processing.",
|
|
2174
2084
|
},
|
|
2175
2085
|
isActive: true,
|
|
2176
2086
|
createdBy: "system",
|
|
2177
2087
|
},
|
|
2178
2088
|
{
|
|
2179
|
-
question: "
|
|
2180
|
-
answer: "
|
|
2181
|
-
category: "
|
|
2089
|
+
question: "How long does it take to get paid after a sale?",
|
|
2090
|
+
answer: "<p>Payouts are processed within <strong>7 business days</strong> after the buyer confirms receipt and the return window closes. Payouts go to your linked bank account via NEFT/IMPS. The timeline: <ol><li>Order placed — payment held</li><li>You ship and upload tracking</li><li>Buyer receives item — return window opens (3–7 days depending on product type)</li><li>Return window closes → payout initiated</li><li>Bank credit within 1–3 business days after initiation</li></ol> For auction wins, the same timeline applies.</p>",
|
|
2091
|
+
category: "general",
|
|
2182
2092
|
showOnHomepage: false,
|
|
2183
2093
|
showInFooter: false,
|
|
2184
2094
|
isPinned: false,
|
|
2185
|
-
order:
|
|
2186
|
-
priority:
|
|
2187
|
-
tags: ["
|
|
2095
|
+
order: 14,
|
|
2096
|
+
priority: 8,
|
|
2097
|
+
tags: ["seller", "payout", "payment", "timeline", "bank"],
|
|
2188
2098
|
relatedFAQs: [],
|
|
2189
2099
|
useSiteSettings: false,
|
|
2190
|
-
|
|
2191
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2100
|
+
stats: { views: 680, helpful: 590, notHelpful: 22 },
|
|
2192
2101
|
seo: {
|
|
2193
|
-
slug: "seller-
|
|
2194
|
-
metaTitle: "
|
|
2195
|
-
metaDescription: "
|
|
2102
|
+
slug: "seller-payout-timeline",
|
|
2103
|
+
metaTitle: "When Do Sellers Get Paid on LetItRip? | Payout FAQ",
|
|
2104
|
+
metaDescription: "Seller payout timeline explained — from order to bank credit on LetItRip.",
|
|
2196
2105
|
},
|
|
2197
2106
|
isActive: true,
|
|
2198
2107
|
createdBy: "system",
|
|
2199
2108
|
},
|
|
2200
2109
|
{
|
|
2201
|
-
question: "
|
|
2202
|
-
answer:
|
|
2203
|
-
category: "
|
|
2110
|
+
question: "Can I set my own return policy as a seller?",
|
|
2111
|
+
answer: "<p>Yes. LetItRip gives sellers flexibility to set store-level return policies. You can configure: <ul><li>Return window: 0, 3, 7, or 14 days after delivery</li><li>Return reason requirements: all reasons, buyer's remorse excluded, defect only</li><li>Who pays return shipping: buyer or seller</li></ul> Platform-level minimum: if an item arrives damaged or not-as-described, buyers are always protected regardless of your policy. Your custom policy is shown on every product page.</p>",
|
|
2112
|
+
category: "general",
|
|
2204
2113
|
showOnHomepage: false,
|
|
2205
2114
|
showInFooter: false,
|
|
2206
2115
|
isPinned: false,
|
|
2207
|
-
order:
|
|
2208
|
-
priority:
|
|
2209
|
-
tags: ["
|
|
2116
|
+
order: 15,
|
|
2117
|
+
priority: 7,
|
|
2118
|
+
tags: ["seller", "return", "policy", "custom", "store"],
|
|
2210
2119
|
relatedFAQs: [],
|
|
2211
2120
|
useSiteSettings: false,
|
|
2212
|
-
|
|
2213
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2121
|
+
stats: { views: 460, helpful: 400, notHelpful: 18 },
|
|
2214
2122
|
seo: {
|
|
2215
|
-
slug: "
|
|
2216
|
-
metaTitle: "
|
|
2217
|
-
metaDescription: "
|
|
2123
|
+
slug: "seller-return-policy-settings",
|
|
2124
|
+
metaTitle: "Can Sellers Set Their Own Return Policy? | LetItRip FAQ",
|
|
2125
|
+
metaDescription: "How sellers can configure return windows and policies on LetItRip.",
|
|
2218
2126
|
},
|
|
2219
2127
|
isActive: true,
|
|
2220
2128
|
createdBy: "system",
|
|
2221
2129
|
},
|
|
2222
2130
|
{
|
|
2223
|
-
question: "What
|
|
2224
|
-
answer: "
|
|
2225
|
-
category: "
|
|
2131
|
+
question: "What happens if a buyer raises a dispute against me?",
|
|
2132
|
+
answer: "<p>If a buyer raises a dispute: <ol><li>You receive a notification and have <strong>48 hours</strong> to respond</li><li>Provide evidence: tracking proof, photos of item before shipping, description accuracy</li><li>LetItRip mediation team reviews both sides within 5 business days</li><li>If resolved in your favour, the order completes normally</li><li>If resolved in the buyer's favour, a full or partial refund is issued; item returned to you</li></ol> Always ship with tracking and photograph items before packing to build your evidence trail.</p>",
|
|
2133
|
+
category: "general",
|
|
2226
2134
|
showOnHomepage: false,
|
|
2227
2135
|
showInFooter: false,
|
|
2228
2136
|
isPinned: false,
|
|
2229
|
-
order:
|
|
2230
|
-
priority:
|
|
2231
|
-
tags: ["
|
|
2137
|
+
order: 16,
|
|
2138
|
+
priority: 7,
|
|
2139
|
+
tags: ["seller", "dispute", "resolution", "mediation", "tracking"],
|
|
2232
2140
|
relatedFAQs: [],
|
|
2233
2141
|
useSiteSettings: false,
|
|
2234
|
-
|
|
2235
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2142
|
+
stats: { views: 520, helpful: 450, notHelpful: 22 },
|
|
2236
2143
|
seo: {
|
|
2237
|
-
slug: "seller-
|
|
2238
|
-
metaTitle: "
|
|
2239
|
-
metaDescription: "
|
|
2144
|
+
slug: "seller-dispute-resolution-process",
|
|
2145
|
+
metaTitle: "What Happens If a Buyer Disputes My Order? | LetItRip FAQ",
|
|
2146
|
+
metaDescription: "LetItRip's dispute resolution process for sellers — timeline and evidence requirements.",
|
|
2240
2147
|
},
|
|
2241
2148
|
isActive: true,
|
|
2242
2149
|
createdBy: "system",
|
|
2243
2150
|
},
|
|
2244
2151
|
{
|
|
2245
|
-
question: "Can I
|
|
2246
|
-
answer:
|
|
2247
|
-
category: "
|
|
2152
|
+
question: "Can I list pre-order products before they arrive in stock?",
|
|
2153
|
+
answer: "<p>Yes, pre-order listings are fully supported. To list a pre-order: <ol><li>Create a product listing and toggle <strong>Pre-Order Mode</strong> on</li><li>Set the estimated dispatch date and deposit amount</li><li>Add a pre-order note explaining terms (e.g., 'Full payment at dispatch')</li><li>Buyers pay a deposit to reserve the item</li></ol> You must update the listing if dispatch dates change and notify affected buyers. Repeated delays or cancellations can trigger seller rating penalties. Full payment processing happens at dispatch.</p>",
|
|
2154
|
+
category: "general",
|
|
2248
2155
|
showOnHomepage: false,
|
|
2249
2156
|
showInFooter: false,
|
|
2250
2157
|
isPinned: false,
|
|
2251
|
-
order:
|
|
2252
|
-
priority:
|
|
2253
|
-
tags: ["
|
|
2158
|
+
order: 17,
|
|
2159
|
+
priority: 7,
|
|
2160
|
+
tags: ["seller", "pre-order", "listing", "deposit", "dispatch"],
|
|
2254
2161
|
relatedFAQs: [],
|
|
2255
2162
|
useSiteSettings: false,
|
|
2256
|
-
|
|
2257
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2163
|
+
stats: { views: 390, helpful: 340, notHelpful: 14 },
|
|
2258
2164
|
seo: {
|
|
2259
|
-
slug: "seller-
|
|
2260
|
-
metaTitle: "
|
|
2261
|
-
metaDescription: "
|
|
2165
|
+
slug: "seller-pre-order-listing-guide",
|
|
2166
|
+
metaTitle: "How to List Pre-Order Products on LetItRip | Seller Guide",
|
|
2167
|
+
metaDescription: "Step-by-step guide to creating pre-order listings on LetItRip as a seller.",
|
|
2262
2168
|
},
|
|
2263
2169
|
isActive: true,
|
|
2264
2170
|
createdBy: "system",
|
|
2265
2171
|
},
|
|
2266
2172
|
{
|
|
2267
|
-
question: "How do I
|
|
2268
|
-
answer: "
|
|
2269
|
-
category: "
|
|
2173
|
+
question: "How do I promote a listing on LetItRip?",
|
|
2174
|
+
answer: "<p>Promoted listings appear at the top of search results, category pages, and may be featured on the homepage. To promote: <ol><li>Go to your Dashboard → My Products</li><li>Click the <strong>Promote</strong> button on any active listing</li><li>Choose a duration: 7, 14, or 30 days</li><li>Pay the promotion fee (₹99–₹499 depending on duration and category)</li></ol> Promoted listings show a 'Promoted' badge. Analytics (views, clicks, conversions) are tracked in your dashboard.</p>",
|
|
2175
|
+
category: "general",
|
|
2270
2176
|
showOnHomepage: false,
|
|
2271
2177
|
showInFooter: false,
|
|
2272
2178
|
isPinned: false,
|
|
2273
|
-
order:
|
|
2179
|
+
order: 18,
|
|
2274
2180
|
priority: 6,
|
|
2275
|
-
tags: ["
|
|
2181
|
+
tags: ["seller", "promote", "promotion", "listing", "featured"],
|
|
2276
2182
|
relatedFAQs: [],
|
|
2277
2183
|
useSiteSettings: false,
|
|
2278
|
-
|
|
2279
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2184
|
+
stats: { views: 380, helpful: 320, notHelpful: 16 },
|
|
2280
2185
|
seo: {
|
|
2281
|
-
slug: "
|
|
2282
|
-
metaTitle: "
|
|
2283
|
-
metaDescription: "
|
|
2186
|
+
slug: "how-to-promote-listing",
|
|
2187
|
+
metaTitle: "How to Promote a Listing on LetItRip | Seller FAQ",
|
|
2188
|
+
metaDescription: "How to get your collectibles listings promoted on LetItRip for more visibility.",
|
|
2284
2189
|
},
|
|
2285
2190
|
isActive: true,
|
|
2286
2191
|
createdBy: "system",
|
|
2287
2192
|
},
|
|
2288
2193
|
{
|
|
2289
|
-
question: "
|
|
2290
|
-
answer: "
|
|
2291
|
-
category: "
|
|
2194
|
+
question: "Can I run a sale or discount on my store products?",
|
|
2195
|
+
answer: "<p>Yes. You can offer discounts via two mechanisms: <ul><li><strong>Direct price edit</strong>: Simply lower the price on any listing. Add 'SALE' to the product title to make it clear.</li><li><strong>Store Coupons</strong>: Create a coupon code (e.g., BEYBLADE10) from Dashboard → Coupons → Create. Set percentage or flat discount, expiry, and per-user limits. Share the code with your social media following or newsletter.</li></ul> Platform-wide sale events (e.g., Diwali Sale) offer additional visibility for participating sellers.</p>",
|
|
2196
|
+
category: "general",
|
|
2292
2197
|
showOnHomepage: false,
|
|
2293
2198
|
showInFooter: false,
|
|
2294
2199
|
isPinned: false,
|
|
2295
|
-
order:
|
|
2200
|
+
order: 19,
|
|
2296
2201
|
priority: 6,
|
|
2297
|
-
tags: ["
|
|
2298
|
-
relatedFAQs: [],
|
|
2299
|
-
useSiteSettings: false,
|
|
2300
|
-
variables: [],
|
|
2301
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2302
|
-
seo: {
|
|
2303
|
-
slug: "listing-guidelines",
|
|
2304
|
-
metaTitle: "Listing Guidelines | LetItRip Seller Policies",
|
|
2305
|
-
metaDescription: "Use clear photos, accurate info, correct category. No counterfeits or misleading content.",
|
|
2306
|
-
},
|
|
2307
|
-
isActive: true,
|
|
2308
|
-
createdBy: "system",
|
|
2309
|
-
},
|
|
2310
|
-
{
|
|
2311
|
-
question: "Can I sell internationally?",
|
|
2312
|
-
answer: "Currently, LetItRip only supports domestic sales within India. International selling may be available in the future.",
|
|
2313
|
-
category: "sellers",
|
|
2314
|
-
showOnHomepage: false,
|
|
2315
|
-
showInFooter: false,
|
|
2316
|
-
isPinned: false,
|
|
2317
|
-
order: 12,
|
|
2318
|
-
priority: 4,
|
|
2319
|
-
tags: ["international", "selling", "export"],
|
|
2202
|
+
tags: ["seller", "discount", "sale", "coupon", "store"],
|
|
2320
2203
|
relatedFAQs: [],
|
|
2321
2204
|
useSiteSettings: false,
|
|
2322
|
-
|
|
2323
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
2205
|
+
stats: { views: 340, helpful: 290, notHelpful: 12 },
|
|
2324
2206
|
seo: {
|
|
2325
|
-
slug: "
|
|
2326
|
-
metaTitle: "
|
|
2327
|
-
metaDescription: "
|
|
2207
|
+
slug: "seller-discount-sale-coupon",
|
|
2208
|
+
metaTitle: "How to Run Sales and Discounts as a Seller | LetItRip FAQ",
|
|
2209
|
+
metaDescription: "Create discounts, coupons, and sales on your LetItRip store.",
|
|
2328
2210
|
},
|
|
2329
2211
|
isActive: true,
|
|
2330
2212
|
createdBy: "system",
|
|
2331
2213
|
},
|
|
2332
2214
|
];
|
|
2333
|
-
|
|
2334
|
-
|
|
2215
|
+
const NOW = new Date();
|
|
2216
|
+
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
2217
|
+
export const faqSeedData = RAW_FAQS.map((faq, i) => ({
|
|
2218
|
+
...normalizeFaqSeed(faq),
|
|
2219
|
+
createdAt: daysAgo(400 - i * 5),
|
|
2220
|
+
updatedAt: daysAgo(Math.max(1, 60 - i * 1)),
|
|
2221
|
+
}));
|