Hi, I'm new to this community forum. I have a web marketing company and have a potential client that needs a website with a feature that allows the visitor to create designs on the products he sells- like tee shirts, canvas bags, cups...I'm looking for software that already exists. Does anyone know what this software is called? These 2 websites are good examples of what I need for this web project. http://www.customink.com/lab?ref=nav_v2 also https://www.canva.com/
I also want to know if this software would be compatible with Wordpress.
thanks!

Dani AI

Generated

Short answer: what you need is usually called a "product customizer" or "online product designer." There are three practical approaches: install a WordPress/WooCommerce designer plugin, embed a SaaS/hosted designer via an API/SDK, or build a bespoke editor (HTML5 Canvas/SVG + server-side rendering). Each approach trades speed-to-market, cost, and long-term scalability. (threekit.com)

Useful examples to evaluate quickly: established WordPress/WooCommerce plugins (good for faster, lower-cost builds) and full SaaS visual customizers (better for heavy catalogs, multi-product mockups and print-file automation). Plugins like Fancy Product Designer and Lumise show what a WordPress-native editor looks and feels like; SaaS vendors such as Zakeke provide embeddable designers, mockups, 3D/AR previews and direct generation of production-ready files. Factor in licensing, extension costs and export options when comparing. (v2.fancyproductdesigner.com)

Implementation checklist (things that often break projects): define per-product print zones and templates (don’t try to auto-fit one design to every SKU), require high-resolution/export options (PDF/SVG/300 DPI or provider-specific sizes), decide RGB vs CMYK workflow with the printer, add upload limits + sanitization, and plan a background job queue for file generation to avoid timeouts on checkout. Also include copyright/terms and automated moderation for user uploads. Print providers and POD platforms document these constraints clearly—follow them when choosing export formats. ()

Recommendation for : because the client has ~2,000 SKUs, start with a small PoC (10–20 representative SKUs) to validate workflow (template mapping, pricing rules, print exports). If timeline/budget are tight, try a SaaS designer with WooCommerce integration; if full control or custom UX is required, plan a phased custom build. Example embed pattern (abstract) you can use in a PoC:

<div id="designer"></div>
<script>
  // vendor SDK - initialize the editor and listen for exported print assets
  VendorDesigner.init({ elementId: 'designer', productId: 12345, onExport: function(asset){ console.log('print file', asset); }});
</script>

Mention ’s plugin suggestion as a starting point, but evaluate export formats and automation before committing.

Recommended Answers

All 2 Replies

Thanks for these 2 replies. this plugin looks interesting https://wordpress.org/plugins/tags/t-shirt-designer but not sure if I want to rely on a plugin and also, it doesn't look like it will work on all the other products like mugs, canvas bags... The client has over 2,000 items in his online store but I will look further. I doubt customink.com uses a WP plugin. Thanks again!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.