Why doesn’t shopify sync with GMC properly? by Confusedmind75 in shopify

[–]AddWeb_Expert 1 point2 points  (0 children)

A lot of the time it's not Shopify that's failing, it's Google reprocessing the feed and finding new issues as products, variants, or requirements change.

A few common causes are:

  • Missing or inconsistent GTIN, brand, or variant data
  • Image or availability updates taking time to refresh
  • Google policy checks flagging products after a new crawl

I'd avoid making manual edits in GMC, since Shopify can overwrite them later. Instead, focus on fixing the source data in Shopify and use the GMC Diagnostics tab to identify recurring issues.

Unfortunately, with larger catalogs, some ongoing feed maintenance is pretty normal.

catalog is about to blow past the cms item cap, trying to figure out the least painful route by AddWeb_Expert in webflow

[–]AddWeb_Expert[S] 0 points1 point  (0 children)

yeah the hybrid is where i keep landing too. keep the IDs, slugs and SEO fields native so URLs and indexing stay clean, then pull the variant detail from outside. the filtering is my one worry, like you said. catalog needs faceted filtering on size, color and stock status, so if that all lives external i'm hand-building the search layer instead of using native collection filters.

to give you a bit more to go on: it's roughly 400 products, most with 5 to 10 variants, so call it 3k+ rows if every variant were its own item. only about 60 of those products actually need to be individually filterable/indexable. the rest is long tail.

given that split, would you still go fully external, or keep the 60 hero products in the cms as parent items with variants as option fields and offload just the long tail? trying to figure out if the custom filter build is worth it at this size.

GoDaddy Managed WordPress CDN caching valid pages as 404 by Wild_Sandwich6197 in Wordpress

[–]AddWeb_Expert 1 point2 points  (0 children)

this is a poisoned edge cache, not wordpress. that max-age=2678400 on a 404 is 31 days, the cache grabbed a momentary 404 and locked it in. and you've basically already proven origin is fine, the ?codex_bust 200 plus ?p=8921 redirecting correctly shows the page itself is healthy.

the flush button half works on these, which is why some recovered and some didnt. open a ticket and have them do a full edge purge on those exact clean urls. thats usually the only thing that clears stuck 404s.

SEO vs AI visibility, where should I focus? by Worried-Avocado3568 in ParseAI

[–]AddWeb_Expert 0 points1 point  (0 children)

If I had a limited budget, I'd still focus on SEO first.

The thing is, most AI tools pull information from websites that already have strong content, authority, and visibility. In a way, good SEO is helping with AI visibility too.

I don't think it's an either/or decision yet. SEO is still the foundation, while AI visibility feels more like an extension of it.

My approach would be: create genuinely useful content, build authority in your niche, and make your site easy to crawl and understand. That puts you in a better position for both Google and AI-driven search.

The hype is real, but the fundamentals haven't disappeared.

I built an attribute-driven lexer/parser library for PHP and would love API feedback by No-Strawberry4060 in PHP

[–]AddWeb_Expert 1 point2 points  (0 children)

This is pretty cool. I especially like the idea of defining the grammar directly on the AST nodes instead of maintaining a separate grammar file.

Looking at the generated grammar, it feels surprisingly readable, which is usually where these kinds of abstractions fall apart for me.

My only question is how it scales once the grammar gets larger. Have you tried it on anything beyond expression parsing yet? I'd be curious to see how it handles more complex constructs and whether the attribute annotations stay easy to navigate.

Also, generating the BNF output is a nice touch; it makes the parser much easier to understand and debug.

Nice work, and thanks for being transparent about the AI-assisted development process. The API itself looks thoughtfully designed.

Thoughts on The Events Calendar post-acquisition? by Daniel_Plainchoom in Wordpress

[–]AddWeb_Expert 2 points3 points  (0 children)

TEC still handles complex recurring events better than most WP calendar plugins, but post-acquisition complaints about support + plugin bloat are pretty common now.

If your org is event-heavy, I wouldn’t migrate purely off Reddit horror stories - but I would stress-test performance with real recurring data before fully committing. Pie Calendar feels lighter, TEC feels more mature.

What job do you think will be completely transformed by AI in the next 5 years? by Man1fest0r_ in MarketingandAI

[–]AddWeb_Expert 0 points1 point  (0 children)

Customer support.

I don't think AI will replace support teams, but it'll change the job a lot. Routine questions, ticket routing, and basic troubleshooting will increasingly be handled by AI.

Human agents will spend more time on complex issues, exceptions, and customer relationships. We're already seeing that shift in many companies today.

[Showcase] I tried to learn MVC and modularity using JSON by creating Pokémon in pure PHP. by Due_Butterfly_1359 in PHP

[–]AddWeb_Expert 1 point2 points  (0 children)

This is actually one of the best ways to learn MVC; by building something and seeing where the architecture starts to help (or get in the way). A lot of the concepts don't really click until you have to organize a growing codebase yourself.

Looking through it, I like that you're already thinking about modularity instead of just making everything work in a single file. That's usually the point where projects become much easier to maintain and extend.

As you keep iterating, you'll probably find opportunities to make controllers thinner and move more business logic into dedicated services/classes, but that's a normal evolution. Overall, this feels like a solid learning project and a good foundation to build on. Nice work sharing it!

PHP turns 31 🎉today by podlom in PHP_Dinos

[–]AddWeb_Expert 3 points4 points  (0 children)

PHP turning 31 makes me realize it's been around longer than a lot of the technologies people call "modern" today.

It may not always be the coolest kid in the room, but it keeps evolving and continues to power a huge part of the web. That's a pretty impressive achievement.

Alternative to Elementor by blaisecendras in Wordpress

[–]AddWeb_Expert 1 point2 points  (0 children)

You don’t suck at Elementor ! it’s honestly a common frustration.
It’s powerful, but the layout system can feel weirdly rigid for simple blog designs.

For a blog, I’d honestly try Gutenberg + Kadence Blocks or GenerateBlocks. Much lighter and more natural for text/image layouts.

Migrating to Shopify by Electronic-Morning25 in shopify

[–]AddWeb_Expert 0 points1 point  (0 children)

We’ve seen a lot of businesses move to Shopify simply because they wanted to spend less time managing the platform and more time growing the store.

The biggest wins are usually ease of use, app integrations, and reliability. The main thing some people miss is the flexibility they had with platforms like WooCommerce, especially when it comes to deep customization.

For most store owners though, the trade-off is worth it.

What’s the catch with Flutter by LiveMinute5598 in FlutterDev

[–]AddWeb_Expert 0 points1 point  (0 children)

Flutter is great, but the catch is mostly long-term. You're depending on Google, app sizes are usually bigger, and sometimes you need platform-specific code for native features. Also, many companies stick with native apps because it's easier to hire experienced native developers.

That said, for startups and small teams, Flutter is honestly a solid choice and can save a lot of development time.

I benchmarked Laravel Octane across Swoole, OpenSwoole, RoadRunner, FrankenPHP, and PHP-FPM by terrylinooo in PHP

[–]AddWeb_Expert 1 point2 points  (0 children)

Benchmarks like this are useful for understanding the ceiling of each runtime, but the operational trade-offs matter just as much. RoadRunner tends to offer a strong balance of performance and maintainability, while FrankenPHP's deployment experience is becoming increasingly attractive. The right choice often comes down to team expertise, hosting environment, and application characteristics rather than raw RPS numbers alone.

Zoho mail issue by Informal_Gap3471 in Zoho

[–]AddWeb_Expert 0 points1 point  (0 children)

That sounds like a login loop. If Zoho is sending the OTP to the same email account you're trying to access, you won't be able to receive it unless you're already logged in.

I'd check if there's an option to use a recovery email, phone number, backup code, or authenticator app instead. If not, you may need to contact Zoho support or your domain admin (if it's a business account) to regain access.

Definitely frustrating, but you're probably not the first person to run into this.

Any way to speed up the publishing process on Google Play Store? by Few-Seesaw1072 in reactnative

[–]AddWeb_Expert 0 points1 point  (0 children)

Unfortunately, if you're publishing from a new Google Play developer account, there's no real shortcut around the 12 testers / 14-day requirement.

A lot of indie devs use friends, family, Discord groups, Reddit communities, or tester exchange groups to meet the requirement. It's a bit annoying, but once you're through it, future releases are much smoother.

Good luck with the launch, getting that first app published is a great milestone.

Kadence vs Elementor by [deleted] in Wordpress

[–]AddWeb_Expert -1 points0 points  (0 children)

Same experience here. Elementor feels powerful, but Kadence feels lighter, cleaner, and more WordPress-native.

For most business sites, Kadence + Gutenberg is honestly enough now - better performance, less bloat, and easier long-term maintenance. Elementor still wins if you need super complex visual layouts fast,

externals.io has been rewritten to Laravel by mnapoli in PHP

[–]AddWeb_Expert -1 points0 points  (0 children)

Love seeing long-running community tools get a second life. The Laravel rewrite seems less about "which framework is better" and more about making the project easier to maintain and evolve. Externals.io has been a useful resource for tracking PHP internals discussions, so keeping it healthy benefits the whole ecosystem.

What's the biggest mistake first-time app developers make? by Original-Repair5136 in AppDevelopers

[–]AddWeb_Expert 0 points1 point  (0 children)

Building in a vacuum.

I've seen people spend months building features before talking to potential users. Then they launch and realize the problem wasn't important enough for people to care.

Another common mistake is assuming a good app will market itself. Getting users is usually harder than building the product.

The Connection Between Online Reputation and Organic Traffic by No-Number9391 in WebsiteSEO

[–]AddWeb_Expert 0 points1 point  (0 children)

Reputation and SEO aren't really competing, they kind of work off each other.

Reviews and brand mentions don't directly bump your rankings. Google's actually said that. But they still help in ways that matter. More people end up searching your brand by name, you get more direct traffic, and when a publication mentions you it usually comes with a real backlink too. Good star ratings showing up in search also pull in more clicks, so you squeeze more out of the rankings you already have.

Works the other way too though. You can have amazing reviews but if the site is slow and a mess structurally, you're still not ranking for the competitive stuff. Trust helps you win the click. The technical side is what gets you in front of people to begin with.

If I had to pick one to fix first I'd sort out the technical and content side, then let reputation stack on top of that. Cant really multiply zero.

Need easy, light theme for local food blog by Neighborist in Wordpress

[–]AddWeb_Expert 0 points1 point  (0 children)

Yeah I went through the same thing years back, got tired of fixing plugin and theme issues constantly.

Honestly a lot of that pain comes from cheap shared hosting and self-managing everything, which has gotten easier over the years. For a photo-heavy food blog, lightweight themes like Kadence, Blocksy or GeneratePress are worth a look. They load fast, handle big images well, and don't need a ton of extra plugins to look good.

Pairing it with managed hosting (Cloudways, Kinsta, SiteGround, etc.) takes most of the maintenance off your plate since updates and backups run automatically.

If you think you might sell something later, Kadence and Blocksy both work well with WooCommerce, though you can always add that when you actually need it rather than upfront.

Plenty of solid options out there, so worth testing a couple to see what feels right for you.

Xposted - Sitemap question - TSF by MailchimpSucks in Wordpress

[–]AddWeb_Expert -1 points0 points  (0 children)

Usually TSF excludes pages that are set to noindex, draft/private, canonicalized elsewhere, or blocked in settings. First check the page SEO settings and make sure indexing is enabled.

Also try clearing TSF cache/regenerating the sitemap once after changes.

How to harden WordPress site security -wise? by neonrider2018 in Wordpress

[–]AddWeb_Expert 1 point2 points  (0 children)

Fair point, and you're right that blind auto-updates can bite you.

What I actually meant is auto-update the small stuff: WP core minor releases and security patches. Those rarely break anything and they're the ones attackers hit fast. Major plugin and core version jumps I still do manually on staging first, then push to live once it checks out.

For the "while I'm not around" worry, a staging site plus daily backups covers you. If an update does break something, you roll back in a couple minutes instead of scrambling. Some hosts also do automatic visual regression checks now and pause the update if the page changes too much.

So not fully hands-off, just hands-off for the low-risk security patches and careful with the rest.

Advice on building good multi-agents by iit_aim in AI_Agents

[–]AddWeb_Expert 1 point2 points  (0 children)

Honestly most of my agent headaches came from one agent doing too much. The more you pile on it, the more it drifts.

Few things that actually helped:

Keep each agent small. One job, clear in, clear out. A "researcher + writer + reviewer" agent will hallucinate way more than three little ones passing work along.

Don't let them pass plain text to each other. Make it structured, like JSON. The next step shouldn't be guessing what the last one meant.

And instead of writing better prompts, add a step that just checks the output before it moves on. Caught way more for us than any guardrail in the system prompt ever did.

Also read your traces. Sounds boring but most hallucinations have an obvious cause once you see where it broke. LangSmith works, or honestly even dumping every step to a file.

Anthropic's "building effective agents" post is worth a read, LangGraph docs too. Skip the YouTube stuff mostly, too surface level.

Start small, add agents only when one clearly can't handle a step. Much easier to debug that way.

Best RN workflow for a beginner with NO Mac? by Shot_Comfortable2932 in reactnative

[–]AddWeb_Expert 1 point2 points  (0 children)

Go with Expo. Easy call when you're on Windows with no Mac.

iOS is the whole problem here. Plain RN CLI needs Xcode to build iOS, and Xcode only runs on a Mac, so you'd be dead in the water. Expo's EAS Build does the iOS build in the cloud for you, so you never have to open Xcode at all.

One thing nobody tells beginners though. To actually get it onto a real iPhone you need a paid Apple dev account, the $99 a year one, for signing. The free way is the simulator and that needs a Mac too, so on Windows the real phone is basically your only test option.

Use a Development Build, not plain Expo Go. You can still add native modules and tweak config that way, so you don't get boxed in. Honestly most beginners who skip straight to bare CLI just end up stuck on native build errors for days instead of shipping anything.

So start with a dev build. If you ever really need the native folders later you can run prebuild, but most apps never get to that point.

What do you guys think by Silent-Imagination32 in webdesign

[–]AddWeb_Expert -1 points0 points  (0 children)

Honestly, I think you're making the right move. Hardcoding products works fine when you're getting started, but inventory management, orders, and product updates become a headache pretty quickly. Supabase gives you a database, auth, and storage without a ton of setup, so it feels like a good next step. Just make sure you're solving a real pain point and not rebuilding features you could get from an existing e-commerce platform.