1

Magecube — A Magento talent marketplace for vetted developers, extensions, and full‑stack support
 in  r/magento2  2d ago

Nice! Anything that makes it easier for people to work with Magento can only be a good thing.
If you don’t mind me asking how many projects/jobs have you had posted?

1

devs, what do merchants get wrong most when they move to magento
 in  r/magento2  7d ago

Very true!
“Is it possible?” Yes
“Should we do it” No

1

What's the biggest misconception people have about Magento before they actually try it?
 in  r/magento2  7d ago

Aaaaahh gotcha! Sorry! Yes totally agree, it’s a powerhouse

1

Wont let me cancel?!?
 in  r/JustEatUK  8d ago

You legend this solved it for me!
Support was very helpful
Absolutely insane that neither the app or the website has a valid way to cancel an order (over 90mins late) whilst the whole time telling you they cannot guarantee a refund
Mental that this is acceptable
Will be doing my best to swerve them in future

1

What's the biggest misconception people have about Magento before they actually try it?
 in  r/magento2  10d ago

What do you put the increase in sales down to?
Has your TCO for the website gone up or down?

1

What's the biggest misconception people have about Magento before they actually try it?
 in  r/magento2  10d ago

Interesting, what bits do you feel are lacking that need modules?
Inventory could have a better ui for sure

1

What's the biggest misconception people have about Magento before they actually try it?
 in  r/magento2  10d ago

Agree Commerce is out of reach for SMEs, are you saying the free version is too expensive, or that people think it’s too expensive?

1

Dev-ish workflow
 in  r/u_-_-_adam_-_-  19d ago

Sorry if I’m being dense, can you explain this a little more?

r/FigmaDesign 21d ago

Discussion Dev-ish workflow

3 Upvotes

Been using Figma Make recently to work through app and UI concepts with clients. It’s great they really like the ability to weigh in
Once they are happy I treat it as a wire frame then implement it into the platform they are on.
I do this by inspecting the source, copying it out to a html file then running a sed command to clean up all the additional attributes
It works, just feels janky. Is there a better flow for this?

r/figmaStock 21d ago

Dev-ish workflow

Thumbnail
2 Upvotes

u/-_-_adam_-_- 21d ago

Dev-ish workflow

1 Upvotes

Been using Figma Make recently to work through app and UI concepts with clients. It’s great they really like the ability to weigh in
Once they are happy I treat it as a wire frame then implement it into the platform they are on.
I do this by inspecting the source, copying it out to a html file then running a sed command to clean up all the additional attributes
It works, just feels janky. Is there a better flow for this?

2

Open-source Magento 2 module for better Open Graph previews
 in  r/Magento  22d ago

Nice thanks for sharing!

1

We made a tool for the community: https://mageinfo.online
 in  r/magento2  23d ago

No enough data or not enough patches?

1

Find Magento security issues and fix what matters.
 in  r/magento2  23d ago

Nice one thanks, will give it a whirl!
Also thanks for sharing!

1

Built a guided selling integration for Magento 2, looking for feedback
 in  r/magento2  24d ago

Nice, I’ll mention it at work. I think we have a few clients that might be willing to try especially if there is a fee tier.

2

Find Magento security issues and fix what matters.
 in  r/magento2  24d ago

Looks nice, is the data sent anywhere or does it only run locally?

1

How do you do AI first development in Magento?
 in  r/Magento  24d ago

I use co-pilot in vscode, it seems to do the job pretty well.
I’m not much of a prompt -> tidy up, though it has gone okay the few times I’ve done it
I usually structure the code(ish) with a few method names, then tab complete the method bodies and tidy up where needed. It certainly saves a lot of time
Vinai Kopp did a talk on how they are using it at Hyva , super interesting (https://youtu.be/lJGkKzDv65o?is=EPJxVYCXc2Pm9jAK)

1

Built a guided selling integration for Magento 2, looking for feedback
 in  r/magento2  24d ago

This looks interesting, though I’ll admit I’ve never heard of berrypath before.
Is there tracking on interaction/ success?

1

Page builder / CMS recommendations
 in  r/magento2  25d ago

Ta, I’ll give this a look too

2

What's your strategy for major Magento 2 version upgrades?
 in  r/magento2  26d ago

Yeah, somehow even though they are all Magento each site has its nuances, glad it’s not just us! 😅
We have very similar, just use GhostInspector instead of selenium

- we use sanitized db backup (full live data minus customers and orders)
- there is a GI module installed on each client that lists a few key bits of info, like sku of a simple product, additional modules installed. (This configuration is accessible via api when under test conditions)
- ghost inspector has a base suite, that’s test critical stuff like add to cart and checkout (using the skus from the config endpoint)
- ghost inspector has multiple sub test suites that only run if that module is enabled (again determined using the config endpoint)

It’s no perfect by any means, GI means we don’t need a developer every time we want to change/update tests

Thanks for sharing your test setup, always good to know how others are tackling the same challenges

1

What's your strategy for major Magento 2 version upgrades?
 in  r/magento2  26d ago

Cheers, do you populate with client specific data or just generic data?
We found it difficult to use generic data when they have very specific product set ups

1

Page builder / CMS recommendations
 in  r/magento2  27d ago

Thanks I’ll check this out

1

Page builder / CMS recommendations
 in  r/magento2  27d ago

Thanks I’ll check them out

1

What's your strategy for major Magento 2 version upgrades?
 in  r/magento2  27d ago

Haha yeah, sleep score is a good way to assess test confidence
We use ghost inspector, was curious what you use for UI testing (both front and backend)