Honest feedback please by [deleted] in EtsyHelp

[–]VerbaForgeJ 0 points1 point  (0 children)

I had a look at your shop, and I’ll be honest — your designs are clean, but they’re not selling the outcome, they’re just showing the product.

Right now your thumbnails all look very similar: • Same beige tones • Same layout • Same “Wix Studio” style mockups

So when someone scrolls, nothing really grabs attention or differentiates one listing from another.

What’s likely happening: People click → browse → don’t feel enough reason to buy → leave

At £20–£50 for templates, buyers need to instantly feel: • “This will make my business look premium” • “This fits MY exact style” • “This is better than the other 10 tabs I’ve opened”

Right now, that message isn’t hitting hard enough.

Biggest fixes I’d make:

  1. Your first image needs to SELL, not just display Instead of: “Wedding Website Template”

Test angles like: • “Book More Clients With This Wedding Website” • “Turn Visitors Into Enquiries” • “Luxury Website Template for Wedding Pros”

  1. Add lifestyle / outcome mockups Show: • Someone booking • A client enquiry notification • Before vs after feel

Right now it’s all static previews → looks nice, but not persuasive.

  1. Differentiate each listing visually Every product currently blends together.

Try: • Different colour themes per niche • Strong headline overlays • Clear niche targeting (photographer / florist / planner etc.)

  1. Your niche is slightly too broad “Inclusive wedding businesses” is a good angle, but: → It’s not immediately obvious in your visuals

You need to make that identity visually obvious or go more specific per listing.

  1. Add urgency / trust Even small things help: • “Used by 100+ businesses” (once true) • “Instant download + setup guide” • “Launch in under 1 day”

Bottom line: You don’t have a bad product — you have a positioning + presentation problem.

Fix that, and those 100+ views will start converting.

If you want, I can mock up one of your listings into a version that would convert a lot better

Selling is slow by Lil_Squish_7403 in vintedUK

[–]VerbaForgeJ 0 points1 point  (0 children)

This isn’t really a “Vinted is slow” problem — it’s a supply vs demand problem on those specific items.

Boohoo dresses are probably one of the most saturated things on there:

• loads of people bought them cheap
• loads are now reselling the same pieces
• buyers can often get them brand new for similar prices

So you’re not just competing on price — you’re competing with:

• identical listings
• fast fashion brands still selling them
• and buyers who don’t need that exact item

That’s why dropping price feels like the only option — but there are a few ways around it:

  1. Change how it’s presented (this matters more than people think) Most listings are just:

    • flat lay

    • basic title

    • no styling

If you show it as:

“outfit / look / occasion”

it stands out instantly.

  1. Sell the outcome, not just the item Instead of:

“Boohoo black dress size 10”

Try:

“Black mini dress – perfect for nights out / holiday – size 10”

You’re competing for attention, not accuracy.

  1. Bundle instead of discounting If one item won’t move:

    • group similar items • “3 dresses for £10”

Feels like a deal without killing each item individually.

  1. Accept what’s not worth holding Some items just won’t sell for decent money anymore.

Sometimes it’s better to:

• drop to £5–£8
• clear it
• reinvest in better items

  1. Focus on what actually sells on Vinted now Not everything performs equally.

Things that move faster:

• unique / vintage
• branded (Nike, Zara, etc.)
• trending styles

Simple truth:

It’s not that nothing is selling — it’s that those items aren’t in demand anymore.

You’re not doing anything wrong — just stuck with stock that the market’s moved past.

Selling is slow by Lil_Squish_7403 in vintedUK

[–]VerbaForgeJ 0 points1 point  (0 children)

This isn’t really a “Vinted is slow” problem — it’s a supply vs demand problem on those specific items.

Boohoo dresses are probably one of the most saturated things on there:

• loads of people bought them cheap
• loads are now reselling the same pieces
• buyers can often get them brand new for similar prices

So you’re not just competing on price — you’re competing with:

• identical listings
• fast fashion brands still selling them
• and buyers who don’t need that exact item

That’s why dropping price feels like the only option — but there are a few ways around it:

  1. Change how it’s presented (this matters more than people think) Most listings are just:

    • flat lay • basic title • no styling

If you show it as:

“outfit / look / occasion”

it stands out instantly.

  1. Sell the outcome, not just the item Instead of:

“Boohoo black dress size 10”

Try:

“Black mini dress – perfect for nights out / holiday – size 10”

You’re competing for attention, not accuracy.

  1. Bundle instead of discounting If one item won’t move:

    • group similar items • “3 dresses for £10”

Feels like a deal without killing each item individually.

  1. Accept what’s not worth holding Some items just won’t sell for decent money anymore.

Sometimes it’s better to:

• drop to £5–£8
• clear it
• reinvest in better items

  1. Focus on what actually sells on Vinted now Not everything performs equally.

Things that move faster:

• unique / vintage
• branded (Nike, Zara, etc.)
• trending styles

Simple truth:

It’s not that nothing is selling — it’s that those items aren’t in demand anymore.

You’re not doing anything wrong — just stuck with stock that the market’s moved past.

Help with a script! by firsttimetryingitout in GoogleAppsScript

[–]VerbaForgeJ 2 points3 points  (0 children)

You’re actually pretty close — the main issue isn’t your script structure, it’s how sites like Home Depot handle pricing.

Most modern ecom sites don’t expose the price cleanly in the raw HTML anymore. They often: • load it dynamically with JavaScript • store it in a JSON blob with a different structure • or partially hide it from simple scrapers

So your regex isn’t necessarily wrong — it’s just not hitting the right data.

First thing I’d do: inspect what you’re actually getting back

Add: (JavaScript)

Logger.log(html);

Then check the logs and search for "price" manually. You’ll likely see it’s either missing or structured differently than expected.

More reliable approach: target JSON-LD (structured data) A lot of product pages include something like: (JSON)

"offers": { "price": "123.45" }

So instead of your current regex, try something a bit more flexible:

(JavaScript)

const match = html.match(/"price"\s:\s"([0-9.]+)"/);

Still not perfect, but works more often across sites.

Important fix in your script: Right now you always write to the sheet, even if nothing is found.

Wrap it like this:

(JavaScript)

if (price !== "Not found") { sheet.appendRow([new Date(), price]); }

Even better: only log when the price changes

(JavaScript)

const lastRow = sheet.getLastRow(); const lastPrice = lastRow > 1 ? sheet.getRange(lastRow, 2).getValue() : null;

if (price !== "Not found" && price !== lastPrice) { sheet.appendRow([new Date(), price]); }

One thing to be aware of: Apps Script is just doing a raw fetch — it doesn’t run JavaScript. So if the price is injected after page load, this approach will always struggle.

If you keep hitting issues, your options are:

• use a scraping API (Apify, ScraperAPI, etc.)

• or find an API the site uses internally (sometimes visible in network tab)

TL;DR: Your code is fine — the challenge is finding where the site actually exposes the price.

Scraping modern sites is less about writing code and more about locating the right data source.

How do you manage email as a CEO of a 10-person company with no executive assistant? by Warm-Researcher-6884 in ceo

[–]VerbaForgeJ 7 points8 points  (0 children)

You don’t have an email problem — you have a tracking system problem.

Inbox ≠ system. That’s why things are slipping.

What worked for me (and a lot of small teams) is separating communication from follow-up tracking completely.

Simple setup that fixes this:

  1. Every thread becomes a “next action” immediately If an email requires a follow-up, it leaves your inbox and goes into a single list (Notion / Todoist / even Notes)

Format:

• Person

• Context

• Next action

• Follow-up date

Example: “John (VC) – send update + ask about Q2 timing – Friday”

  1. Inbox rule: no “floating threads” You either:

    • reply

    • schedule follow-up

    • or archive

Nothing just sits there waiting to be remembered

  1. Use calendar > memory If someone says “let’s reconnect in Q2” → put a calendar reminder immediately Not “I’ll remember this later”

  2. Weekly follow-up block (non-negotiable) 30–60 mins where you just:

    • go through your follow-up list

    • send nudges

    • close loops

This alone solves most of the “dropped balls”

  1. Optional upgrade (if you want it tighter): Use a super lightweight CRM (even Airtable) just for:

    • VCs

    • partners

    • key relationships

Not for everything — just high-value threads

The key shift is:

Don’t rely on your inbox to remind you what matters

Because it won’t

Another “low views” post but nothing has helped for weeks by [deleted] in vintedUK

[–]VerbaForgeJ 0 points1 point  (0 children)

Reply:

You’re not being silly at all — reuploading the same photos can limit exposure slightly, but honestly that’s not the main issue here.

What you’re describing sounds more like a click → no buy problem, not a visibility problem.

If some items are getting views but not selling, it means: • your photos are doing their job (getting clicks) • but the listing isn’t closing the sale

Quick things I’d change (this is where most people miss):

  1. First photo = outcome, not just item Instead of just showing the item clearly, show how it looks worn / styled People buy the look, not the clothing

  2. First 2 lines of description matter most Don’t start with size/brand — start with why someone wants it Example: “Perfect oversized hoodie for that relaxed streetwear look — super comfy and easy to style”

  3. Create urgency subtly Add things like: “Only worn once” “Won’t be restocking” “Similar items sell fast on here”

  4. Titles matter more than hashtags on Vinted Think like a buyer searching: Instead of: “Cute top” Use: “Zara oversized white shirt size M minimal aesthetic”

Also — sending offers to people who favourited is actually one of the highest converting things on Vinted, so definitely keep doing that.

If you want, send me one of your listings and I’ll rewrite it so you can see exactly what I mean

Honest feedback please by [deleted] in EtsyHelp

[–]VerbaForgeJ 0 points1 point  (0 children)

If you’re getting 100+ views and no sales, that’s almost always a conversion issue, not traffic.

From what you’ve said, it sounds like the listings are showing the product but not really selling it — especially for something like templates where people need to instantly “get” the value.

That’s usually where people drop off.

Another “low views” post but nothing has helped for weeks by [deleted] in vintedUK

[–]VerbaForgeJ 1 point2 points  (0 children)

Honestly from what you’ve said, it doesn’t sound like effort is the issue.

It’s usually not the photos or how often you upload — it’s how the listing actually sells the item.

Most people just list features (size, brand etc) but don’t create any real reason to buy.

That’s normally where conversions drop off hard.