Title: EasyCommerce FakerPress
Author: Al Amin Ahamed
Published: <strong>October 26, 2025</strong>
Last modified: April 28, 2026

---

Search plugins

![](https://ps.w.org/easycommerce-fakerpress/assets/banner-772x250.png?rev=3515685)

![](https://ps.w.org/easycommerce-fakerpress/assets/icon-256x256.png?rev=3515685)

# EasyCommerce FakerPress

 By [Al Amin Ahamed](https://profiles.wordpress.org/mralaminahamed/)

[Download](https://downloads.wordpress.org/plugin/easycommerce-fakerpress.2.1.0.zip)

 * [Details](https://test.wordpress.org/plugins/easycommerce-fakerpress/#description)
 * [Reviews](https://test.wordpress.org/plugins/easycommerce-fakerpress/#reviews)
 *  [Installation](https://test.wordpress.org/plugins/easycommerce-fakerpress/#installation)
 * [Development](https://test.wordpress.org/plugins/easycommerce-fakerpress/#developers)

 [Support](https://wordpress.org/support/plugin/easycommerce-fakerpress/)

## Description

EasyCommerce FakerPress populates your EasyCommerce store with realistic fake data
for development, testing, and demos. Choose a generator, configure the parameters,
and click Generate.

**Core Generators**

 * Products — Products with pricing, categories, inventory, attributes, and variations
 * Customers — Customer profiles with addresses, demographics, and purchase history
 * Orders — Complete order histories with payments, shipping, and tax calculations
 * Coupons — Discount codes with rules, usage limits, and restrictions

**Advanced Generators**

 * Product Variations — Variable product attributes, price variance, and stock settings
 * Shipping Plans — Shipping methods, zones, and rate tables
 * Tax Classes — Tax rules for different regions and product types
 * Transactions — Payment records with multiple gateways and status distribution
 * Cart Sessions — Shopping cart abandonment scenarios and session data
 * Attributes — Product attribute types (Text, Color, Image) for variations and 
   filtering
 * Refunds — Refund records against existing completed or processing orders
 * Logs — Activity log entries for orders, products, customers, and system events

**Enhanced Generators**

 * Locations — Geographic data including countries, states, and cities
 * Product Reviews — Product reviews with ratings linked to existing products and
   customers

**Key Features**

 * Run History — Per-generator run log in browser localStorage with all-time stats
   on the dashboard
 * Settings Page — Default count, locale, seed, metadata preference, and configurable
   run history limit
 * Sample Data Sync — One-click download of locale-specific reference data (75+ 
   locales) from the companion GitHub repository
 * Our Plugins Page — Browse the author’s other WordPress.org plugins with live 
   data
 * Hook System — 15+ filters and actions for complete data customization and workflow
   integration
 * REST API — 14 REST controllers under the easycommerce-fakerpress/v1 namespace
 * Playwright E2E Suite — 131 automated tests covering all generators, field types,
   and UI interactions

**Extensibility**

The plugin exposes a full hook system for developers:

 * `easycommerce_fakerpress_*_data_before_create` — Modify generated data before
   creation (10+ filters)
 * `easycommerce_fakerpress_*_generation_result` — Customize returned generation
   results
 * `easycommerce_fakerpress_after_*_created` — Hook into the post-creation workflow
 * `easycommerce_fakerpress_rest_response` — Filter REST API responses

**Important**: Use only in development or staging environments. Back up your database
before generating large datasets.
 **Privacy**

All data is stored in your WordPress database. No external transmissions occur. 
Generated content is fictional and does not represent real individuals or transactions.

**Contributing**

Repository: https://github.com/mralaminahamed/easycommerce-fakerpress

Report issues and request features via GitHub Issues. Pull requests welcome — follow
WordPress Coding Standards and PSR-4, and include tests.

**Support**

WordPress.org support forums and GitHub Issues. Documentation is included in the
plugin README and GitHub repository.

## Screenshots

 * [[
 * Dashboard: Stats bar with live generation counts and generator grid grouped by
   category (Core, Advanced, Enhanced) with Popular badges.
 * [[
 * Products Generator: Two-panel layout with sidebar category nav and run history,
   params panel with product type, price range, categories, and inventory settings,
   and sticky action panel.
 * [[
 * Customers Generator: Customer type and age group chip selects, address preference
   toggles, purchase history and loyalty tier options.
 * [[
 * Orders Generator: Order status selector, customer distribution controls, items-
   per-order range, payment methods, and geographic distribution chips.
 * [[
 * Coupons Generator: Discount type chips (Percentage, Fixed, Free Shipping, Products),
   discount range inputs, usage limits, validity period, and restriction toggles.
 * [[
 * Product Variations Generator: Product type chips, price variance range, stock
   management settings, and variation attribute options.
 * [[
 * Transactions Generator: Transaction types, payment gateways, amount range, and
   status distribution (success, pending, failed) controls.
 * [[
 * Settings Page: Generation defaults (count, locale, seed, metadata), run history
   limit, sample data sync with status, About card, and Danger Zone.
 * [[
 * Our Plugins Page: Live WordPress.org plugin cards with ratings, active install
   counts, and direct links.
 * [[
 * Product Reviews Generator: Target a specific product by ID, configure count, 
   locale, seed, and metadata options.
 * [[
 * Locations Generator: Region chip selects, max countries, state and city generation
   toggles, cities-per-state range, and coordinate generation.

## Installation

#### Automatic

 1. Go to Plugins > Add New in your WordPress admin.
 2. Search for “EasyCommerce FakerPress”.
 3. Click Install Now, then Activate.
 4. Access the plugin via the EC FakerPress menu item.

#### Manual

 1. Download the plugin ZIP file.
 2. Upload it to /wp-content/plugins/easycommerce-fakerpress/.
 3. Run composer install in the plugin directory.
 4. Activate via the Plugins screen.
 5. Access via the EC FakerPress menu.

#### Requirements

 * WordPress 5.0+
 * PHP 7.4+ (8.0+ recommended)
 * EasyCommerce plugin (must be active)
 * 256MB memory minimum (512MB recommended for large datasets)

## FAQ

### What is EasyCommerce FakerPress?

A WordPress plugin that generates realistic fake data for EasyCommerce stores. It
is intended for development, QA testing, and demo environments — not production 
sites.

### How does the EasyCommerce integration work?

The plugin uses native EasyCommerce models (Product, Customer, Order, etc.) to create
data. This ensures validation, relationship integrity, and compatibility with future
EasyCommerce updates. Direct database inserts are avoided.

### Can I generate data with relationships?

Yes. Orders can be linked to existing customers and products with inventory adjustments.
Refunds require existing completed or processing orders. Product reviews are linked
to existing products and customers.

### How realistic is the generated data?

Data uses FakerPHP for authentic names, addresses, and content, combined with e-
commerce-specific logic such as pricing strategies, geographic distribution, and
customer lifecycle patterns. Sample data sync adds locale-specific product names,
addresses, and other reference data.

### Is it safe for production?

No. Use only in development or staging environments. Always back up your database
before generating data.

### Can I customize the generated data?

Yes. Use the hook system to filter data before creation, modify results, or trigger
custom actions after items are created. Abstract generator classes can also be extended
for custom generators.

### What is sample data sync?

The Settings page includes a sync feature that downloads locale-specific reference
data (product names, customer tags, addresses, and more) from the companion GitHub
repository. This improves the realism of generated content across 75+ locales.

### How do I remove generated data?

Use WordPress or EasyCommerce bulk deletion tools. For large-scale cleanup, targeted
database queries (with a backup) may be more efficient. The plugin does not currently
include a bulk delete feature.

### What happens to the run history?

Run history is stored in browser localStorage. It does not affect your database.
You can clear it from the Settings page under Danger Zone.

## Reviews

![](https://secure.gravatar.com/avatar/d67f4e9151bd4fcd994b7ce255d2b8c312ec406b9a886257cd99676efa05ea1e?
s=60&d=retro&r=g)

### 󠀁[helpfull for ecommerce store.](https://wordpress.org/support/topic/helpfull-for-ecommerce-store/)󠁿

 [S.M. Golam Zilani](https://profiles.wordpress.org/raselsec/) November 6, 2025

Good and very handy tool.

 [ Read all 1 review ](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/)

## Contributors & Developers

“EasyCommerce FakerPress” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Al Amin Ahamed ](https://profiles.wordpress.org/mralaminahamed/)

[Translate “EasyCommerce FakerPress” into your language.](https://translate.wordpress.org/projects/wp-plugins/easycommerce-fakerpress)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/easycommerce-fakerpress/),
check out the [SVN repository](https://plugins.svn.wordpress.org/easycommerce-fakerpress/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/easycommerce-fakerpress/)
by [RSS](https://plugins.trac.wordpress.org/log/easycommerce-fakerpress/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.1.0 – April 26, 2026

 * Complete admin UI redesign — Modern SaaS style with clean white, blue and indigo
   accents
 * New dashboard — Stats bar with 4 live stat cards and generator grid grouped by
   category with Popular badges
 * New generator page layout — Sticky top-bar, collapsible sidebar with category
   nav and per-generator run history, two-panel params and action layout
 * New component architecture — Replaced 757-line GeneratorBase monolith with focused
   ParamsPanel, ActionPanel, and GeneratorSidebar components; parameter config centralized
   in generators.ts
 * Run history — Per-generator run log in localStorage (configurable max, FIFO);
   recent runs in sidebar; all-time stats on dashboard
 * 3 new generators — Attributes, Refunds, Logs (total now 14)
 * Settings page — Default count, locale, seed, metadata toggle; configurable max
   runs per generator; sample data sync; About card; Reset Settings
 * Sample data sync — Download or force re-sync locale-specific reference data from
   the companion GitHub repository via REST endpoints
 * Our Plugins page — Fetches and displays the author’s other WordPress.org plugins
   with live data
 * Global sticky nav — Generators, Settings, Our Plugins links with correct active-
   state matching
 * Playwright e2e suite — 131 automated tests covering the home page, generator 
   page layout, ActionPanel interactions, all 6 field types, and all 14 generators
 * Bug fixes — Category matching in all locales; single ActionPanel DOM instance;
   scoped focus styles; RangeField error colour; nested route active state

#### 2.0.3 – January 15, 2026

 * New Product Review generator with weighted rating distribution and verified purchase
   support
 * WordPress comments integration for review storage
 * Order generator data structure fix to match EasyCommerce Order model
 * Proper order notes creation using the Order_Notes model
 * Controller pattern and API schema consistency improvements

#### 2.0.2 – January 15, 2026

 * Added “Get Started” plugin action link
 * Upgraded to Tailwind CSS v4
 * Fixed visual inconsistencies in success messages and navigation
 * Build system and dependency compatibility updates

#### 2.0.1 – November 13, 2025

 * Minor bug fixes and code quality improvements

#### 2.0.0 – November 11, 2025

 * Complete parameter schema alignment for all 10 generators
 * Full TypeScript migration with proper interfaces and validation
 * Corrected array vs string mismatches and naming inconsistencies across all REST
   controllers
 * Breaking change: parameter schemas updated — review custom integrations before
   upgrading

#### 1.0.4 – November 10, 2025

 * Added 15+ filter and action hooks for complete data customization
 * REST response filtering for API extensibility

#### 1.0.2 – October 29, 2025

 * Performance improvements for memory usage and processing speed
 * Bug fixes for validation and error handling across all generators
 * Compatibility updates for latest EasyCommerce features

#### 1.0.0 – October 15, 2025

 * Real-time dependency checks via new REST controller
 * PHPStan level 8 compliance
 * Build system and documentation improvements

#### 0.9.0 – September 15, 2025

 * Initial release with 10 core generators
 * WordPress admin color integration
 * React 18 interface with real-time feedback
 * PSR-4 architecture with native EasyCommerce model integration

## Meta

 *  Version **2.1.0**
 *  Last updated **2 weeks ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/easycommerce-fakerpress/)
 * Tags
 * [development](https://test.wordpress.org/plugins/tags/development/)[ecommerce](https://test.wordpress.org/plugins/tags/ecommerce/)
   [faker](https://test.wordpress.org/plugins/tags/faker/)[testing](https://test.wordpress.org/plugins/tags/testing/)
 *  [Advanced View](https://test.wordpress.org/plugins/easycommerce-fakerpress/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  1 5-star review     ](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/easycommerce-fakerpress/reviews/)

## Contributors

 *   [ Al Amin Ahamed ](https://profiles.wordpress.org/mralaminahamed/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/easycommerce-fakerpress/)