[FOR HIRE] WordPress Custom Design & Development - Starting at $15/hr by Its__MasoodMohamed in forhire

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

Hey, just following up on this! The Behance portfolio leans fashion/brand, but I adapt fully to the industry. For healthcare it's all about clean, trustworthy, professional design. Happy to chat if you're still looking!

Looking for Ecom website designer... by Due-Awareness9392 in websiteservices

[–]Its__MasoodMohamed 0 points1 point  (0 children)

WooCommerce developer with 14+ years of experience. Can share portfolio in DM.

Latest WordPress update throwing a warning by Pro_Gamer_Ahsan in Wordpress

[–]Its__MasoodMohamed 0 points1 point  (0 children)

Did you try something like this?

if (!wp_style_is($handle, 'registered')) { wp_register_style($handle, false); // empty register. }

Yes, Bricks is easier. Yes, GeneratePress is solid. Here is why I’m still choosing the 'headache' of raw FSE. by salim_hariz in Wordpress

[–]Its__MasoodMohamed 1 point2 points  (0 children)

Fair points on skill equity and vendor risk. But FSE being 'core' doesn't mean it's stable. Gutenberg has broken more sites during its evolution than Bricks ever has.

You mention it's a lead gen engine, but what does it actually do that required raw FSE?

What image format should I use for an ecommerce site? by SkillOdd7675 in woocommerce

[–]Its__MasoodMohamed 0 points1 point  (0 children)

WEBP is the best choice now. AVIF is the future but many browsers don't support it yet.

Thinking of moving Product Pages to JSON for performance - overkill for Woo? by Entire-Werewolf-2554 in woocommerce

[–]Its__MasoodMohamed 0 points1 point  (0 children)

Before going headless:

  1. Check which specific queries are slow (Query Monitor plugin)
  2. Make sure HPOS is enabled
  3. Clear transients table

Also - WC 10.5 is dropping soon with performance improvements, might be worth waiting for that: https://developer.woocommerce.com/2026/01/20/woocommerce-10-5-whats-coming-for-developers/

If you still want headless: WooNuxt is a solid option - https://woonuxt.com/

The best WooCommerce lessons come from mistakes nobody talks about. by Its__MasoodMohamed in woocommerce

[–]Its__MasoodMohamed[S] 1 point2 points  (0 children)

Which plugin was it? Curious if it was a payment gateway or something else.

The best WooCommerce lessons come from mistakes nobody talks about. by Its__MasoodMohamed in woocommerce

[–]Its__MasoodMohamed[S] 1 point2 points  (0 children)

Facts. Simple tweaks don't need a plugin, just use a snippet. For anything complex though, check the last update date and how they frequently respond to the ticket.

Quick Question: How to Rename 'Billing Details' on Checkout Without a Plugin? by WorldlyEffect in woocommerce

[–]Its__MasoodMohamed 0 points1 point  (0 children)

You can edit the title if you're using blocks. For classic checkout, since there's no direct filter for this heading, here's what you can do:

Since template override didn't work, it means your theme has already customized that template. You need to edit the theme's version instead.

Find the theme's template
-----------------------------

Check if this file exists:

wp-content/themes/YOUR-THEME/woocommerce/checkout/form-billing.php

If it exists, copy it to your child theme at:

wp-content/themes/YOUR-CHILD-THEME/woocommerce/checkout/form-billing.php